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

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

筛选

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

摘要:解题思路:统计正数和负数个数以及正数的和并输出负数个数及正数平均数注意事项:1.输出结果保留两位小数。。2.计算和sum一定要用浮点型,,推荐使用double。。3.注意输入数据如果为零问题——及正数……

二级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……