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

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

筛选

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

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

二级C语言-计负均正

摘要:解题思路先求出正负数的个数,再求出所有正整数的值的和,最后按照平均数的求法算出答案。注意事项1、计算平均数的变量和统计总个数的变量要使用double型,否则只会整除;2、别忘了两个量输出间隔时的回车。……

二级C语言-计负均正

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,s;double t,t1;int main(){ for(……

如果不用两个map怎么办?

摘要:解题思路:注意事项:参考代码:s=list(map(int,input().strip().split()))x=list(map(int,input().strip().split()))coun=……

二级C语言-计负均正

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,s;double t,t1;int main(){ for(……

二级C语言-计负均正

摘要:解题思路:模拟注意事项:要用double参考代码:#include<bits/stdc++.h>using namespace std;long long a,fs;double zs,zh;int ……

通过for循环来求解

摘要:解题思路:注意事项:参考代码:list1=list(map(int,input().split()))list2=list(map(int,input().split()))list3=[]for i……

艰难的艰难

摘要:解题思路:注意事项:参考代码:int a[20],b=0;  double bug=0;  for(int i=0;i<20;i++)  {  scanf("%d",&a[i]);  if(a[i……