题解 2910: 找最大数序列

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

找最大数序列

摘要:参考代码: ```c #include #include int main() { int n; scanf("%d",&n); int max[n]; for(int i=……

编写题解 2910: 找最大数序列 C

摘要:解题思路:输入的判断当中,要区分ch是否是&#39;,&#39;,如果是的话要继续在此行输入,如果不是则换行注意事项:定义最大值的时候,把几行都找出来,要i+1参考代码:#include <stdio……