最好用数组来求,有没有不用寄存数据的方法 摘要:#include "stdio.h" int main(){ int num[10],sum=0,aver,a=0; for (int i=0;i<10; i++) { …… 题解列表 2023年08月17日 0 点赞 0 评论 116 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i,a[10],count=0; double sum=0; for(i=0;i<10;…… 题解列表 2017年10月22日 0 点赞 0 评论 648 浏览 评分:0.0
二级C语言-平均值计算(C语言) 摘要:解题思路:先输入数组,再算出平均值,最后比较(用count来标记个数)注意事项:参考代码:#include <stdio.h>int main(){ int a[10] = {}; int i;…… 题解列表 2021年04月12日 0 点赞 0 评论 189 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n=0; double aver,a[11],sum=0; for(i=0;i<10;i++) {s…… 题解列表 2019年05月10日 0 点赞 0 评论 263 浏览 评分:0.0
平均值计算 摘要:解题思路:用数组来接收键盘输入的10个数然后遍历数组即可得出结论若有什么不正确的请指出来谢谢哈注意事项:参考代码:// 输入10个整数,求它们的平均值,并输出大于平均值的数据的个数。#include …… 题解列表 2023年05月27日 0 点赞 0 评论 83 浏览 评分:0.0
二级C语言-平均值计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int t,n,a[15],s;//定义int main(){ for(int i=…… 题解列表 2022年05月09日 0 点赞 0 评论 71 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10],i,h=0,n=0; for(i=0;i<…… 题解列表 2018年02月08日 0 点赞 0 评论 521 浏览 评分:0.0
编写题解 1053: 二级C语言-平均值计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; int count=0; in…… 题解列表 2022年03月14日 0 点赞 0 评论 155 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],n,z=0; float y,s=0; for(n=0;n<10;n++) { scanf(…… 题解列表 2018年09月07日 0 点赞 0 评论 396 浏览 评分:0.0
二级C语言-平均值计算-题解(C语言代码) 摘要:解题思路:嵌套for注意事项:参考代码:#include<stdio.h>int main(){ int a[10], b[3] = { 0 }; double aa = 0; wh…… 题解列表 2020年12月23日 0 点赞 0 评论 141 浏览 评分:0.0