题解列表

筛选

用max算法比较同时返回较大的值

摘要:解题思路:面对两个值,用max算法比较同时返回较大的值。注意事项:清零时,清除的是积累的连续count,意味着断开重新比较。参考代码:#include<iostream>#include&……

二维数组解决方式

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){  &nbs……

简单纯粹的解法(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int n,m;scanf("%d",&amp……

陶陶摘苹果

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){  inti,a[10],h,n=0; &……

数组逆序重放

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){  inti,n,a[n];  ……

逐层拆开逻辑,还原每一次计算的过程

摘要:解题思路:逐层拆开逻辑,还原每一次计算的过程。注意,rest+300的位置,前后需要有区分,否则容易混淆。参考代码:#include<iostream>using nam……