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

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

筛选

二级C语言-计负均正

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

二级C语言-计负均正

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;int main(){ int n,sum1=0,sum……

普普通通的解题方法

摘要:解题思路:注意事项:注意输出时sum除以的是剩下的正数参考代码:#include<stdio.h>#include<math.h>int main(){ int a[88],sn = 0.0; dou……

for循环求解计负均正

摘要:解题思路:利用for循环拿到输入的所有数,放到数组中在拿到数的同时进行题目要求的操做,最后输出即可注意事项:参考代码:#include<iostream>using namespace std;int……

C二级辅导-计负均正 (C语言代码)

摘要:解题思路:注意事项:参考代码/*从键盘输入任意20个整型数,统计其中的负数个数并求所有正数的平均值。保留两位小数*/#include <stdio.h>int main(){ int f=0,z=0,……