感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,age,sum=0 ; cin>>…… 题解列表 2023年07月01日 0 点赞 0 评论 102 浏览 评分:0.0
2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double b,c; cin>>n; for…… 题解列表 2023年11月05日 0 点赞 0 评论 79 浏览 评分:0.0
求平均年龄 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,sum=0,age; cin>>n…… 题解列表 2023年07月01日 0 点赞 0 评论 93 浏览 评分:0.0
求平均年龄 摘要:解题思路:注意事项:参考代码: double a,sum,b,num; cin>>a; if(a>=1.0 && a<=100.0){ sum=0; for (in…… 题解列表 2023年07月28日 0 点赞 0 评论 119 浏览 评分:0.0
题解 2794: 求平均年龄(c++) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; int s…… 题解列表 2024年01月09日 0 点赞 0 评论 117 浏览 评分:0.0
2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { int n…… 题解列表 2023年11月11日 0 点赞 0 评论 207 浏览 评分:0.0
题解 2794: 求平均年龄 摘要:解题思路:注意事项:可以用两种输出格式参考代码:方法一:#include <bits/stdc++.h>using namespace std;int main(){ int sum,m; …… 题解列表 2024年01月15日 0 点赞 0 评论 107 浏览 评分:0.0
用了数组的知识 摘要:解题思路:定义一个数组分别存储每次输入的值并求和,存储在sum变量里最后除以输入的个数得到平均值。注意事项:需要一个临时变量m来接收n的值,因为此处使用了while循环将n的值变化,所以需要提前准备一…… 题解列表 2022年10月20日 0 点赞 0 评论 876 浏览 评分:8.0
求平均年龄(c++通俗易懂) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<iomanip>using namespace std;int main(){ int n,a,sum; sum …… 题解列表 2022年11月01日 0 点赞 0 评论 512 浏览 评分:9.3
题解 2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int m,sum; sum=0; ci…… 题解列表 2024年01月09日 0 点赞 0 评论 136 浏览 评分:9.9