参考代码:
#include<iostream> #include<iomanip> using namespace std; int main(){ int count = 0; double arg = 0; int x[20]; for(int i=0; i<20; i++){ cin >> x[i]; if(x[i]<0) count++; if(x[i]>0) arg += x[i]; } arg = arg / (20-count); cout << count << endl; cout << setiosflags(ios::fixed) << setprecision(2) << arg; return 0; }
0.0分
5 人评分
三进制小数 (C++代码)(第11位大于1.5才能进位)浏览:1195 |
C语言训练-求具有abcd=(ab+cd)2性质的四位数 (C语言代码)浏览:1387 |
C语言训练-求函数值 (C语言代码)浏览:937 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:707 |
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:895 |
【计算两点间的距离】 (C语言代码)浏览:913 |
成绩转换 (C语言代码)浏览:1036 |
C语言程序设计教程(第三版)课后习题5.7 (Java代码)浏览:902 |
母牛的故事 (C语言代码)浏览:585 |
幸运数 (C++代码)浏览:1296 |