题解 1061: 二级C语言-计负均正

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

筛选

分类处理数字

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

二级C语言-计负均正(C++版)

摘要:解题思路:根据题意,首先需要定义一个长度为20的数组来保存20个整数,然后定义sum保存所有正数的和,aver保存所有正数的平均值。再定义num保存负数的个数,接着用for循环依次输入20个数(这里为……

二级C语言-计负均正

摘要:```cpp#include#includeusingnamespacestd;intmain(){inta[21],as=0,bs=0,bss=0;for(inti=1;i>a[i];if(a……

不会简单的写法

摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))b=list(map(int,input().split()))c=0d=0e=0for&nbsp……

二级C语言-计负均正

摘要:```pythona=list(map(int,input().split()))whilelen(a)0):sum+=int(a[i])j+=1else:k+=1print(f"{k}\n……

1061: 二级C语言-计负均正

摘要:解题思路:咱不说别的,直接上代码!!!(因为其实也没啥好说的~)参考代码:#include<bits/stdc++.h>using&nbsp;namespace&nbsp;……