建立大数组,用索引循环输入,保留小数计算时用double
摘要:解题思路:如果在循环中输入,则应该先建立一个数组a[10000],后接for循环时用i做索引,cin>>a[i],这样后面计算sum +=a[i]就可以,补充double sum=0。注意事项:记得看……
2794:求平均年龄
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int n,Y,i;
int h=0;
float y;
sca……
题解 2794: 求平均年龄
摘要:解题思路:套个循环……注意事项:别抄我的,抄我的人我诅咒他电脑立刻关机参考代码:#include<bits/stdc++.h>#include<windows.h>using namespace st……
编写题解 2794: 求平均年龄
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin >> n; int sum = ……
一点小思路,参考参考参考.....
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int b,sum,n; scanf("%d",&n); while(scanf("%d……
求平均年龄 2794:
摘要:解题思路:#include <iostream>using namespace std;int main(){ int n; double sum =0; cin>>n; fo……
2794: 求平均年龄
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; double b=0……