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

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

筛选

for循环求解计负均正

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

好写》好写

摘要:参考代码:#include<iostream>#include<stdio.h>using&nbsp;namespace&nbsp;std;&nbsp;……

计负均正1061题解

摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){&nbsp;&nbsp;intnum[20];&a……

计负均正(C++)

摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;#include<iomanip>&nbsp;&nbsp;……

二级C语言-计负均正

摘要:#include#include#include#includeusingnamespacestd;intmain(){floatsum=0,avg=0,a[100],count=0,temp=0;f……

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

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