2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; double b=0…… 题解列表 2024年01月08日 0 点赞 0 评论 56 浏览 评分:0.0
好写》好写 摘要:参考代码:#include<iostream> #include<stdio.h> using namespace std; int main() { int n; cin >>…… 题解列表 2024年01月03日 0 点赞 2 评论 132 浏览 评分:9.9
编写题解 2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:data_list = list(map(int, input().split())) # 第一行输入的数据 age_sum = 0 # 年龄总和 count =…… 题解列表 2023年12月14日 0 点赞 0 评论 434 浏览 评分:8.4
编写题解 2794: 求平均年龄 摘要:解题思路:注意事项:需要注意多行输入的单行输入的情况参考代码:list1 = list(map(int,input().rsplit()))n = list1[0]list1.pop(0)while …… 题解列表 2023年12月08日 0 点赞 6 评论 572 浏览 评分:7.3
班上有学生若干名,给出每名学生的年龄(整数),求班上所有学生的平均年龄,保留到小数点后两位。 摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ int n,i,z; double sum=0; scanf("%d",&n); for(i=1;i<=n;i…… 题解列表 2023年11月16日 0 点赞 0 评论 213 浏览 评分:2.0
2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { int n…… 题解列表 2023年11月11日 0 点赞 0 评论 205 浏览 评分: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 评论 78 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; scanf ("%d",&n); double aver=0,a; f…… 题解列表 2023年10月25日 0 点赞 0 评论 381 浏览 评分:9.9
2794:求平均年龄 摘要:注意事项:最后命令结果为浮点数时,要将表达式中n*1.0转化为浮点类型参考代码:#include<stdio.h>int main(){ int n,i,age,sum=0; scanf(…… 题解列表 2023年08月27日 0 点赞 2 评论 1299 浏览 评分:9.9
题解 2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 100int main(){ int n, age[N]; int i, sum=0; float…… 题解列表 2023年08月17日 0 点赞 0 评论 203 浏览 评分:6.0