题解 1979: 求平均工资

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

筛选

编写题解 1979: 求平均工资

摘要:解题思路:编辑数组先求和再求平均值注意事项:参考代码:#include <stdio.h>int main(){ int n,i,j,b=0,c;  scanf("%d",&n); int a[n];……

求平均工资-题解(C语言代码)

摘要:解题思路:先把工资全部加起来,再进行平均。最后输出。注意事项:参考代码:#include <stdio.h>int main(){ int N,i,x,sum=0; int ave; scanf("%……

1979: 求平均工资

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