2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:/*输入10个数,求它们的平均值,并输出大于平均值的数据的个数。*/#include<stdio.h>int main(){ int a[100]; int …… 题解列表 2019年02月04日 0 点赞 0 评论 1287 浏览 评分:6.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:/*输入10个数,求它们的平均值,并输出大于平均值的数据的个数。*/#include<stdio.h>int main(){ float a[10]; flo…… 题解列表 2019年01月21日 0 点赞 0 评论 329 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路: 输入数组,计算总和, 遍历数组,查找大于平均值的个数注意事项:参考代码:#include"stdio.h" int main(){ int num[10]; …… 题解列表 2018年11月08日 0 点赞 0 评论 368 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a[10]; int p,sum=0; i…… 题解列表 2018年10月13日 0 点赞 0 评论 378 浏览 评分: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
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a[10],ave,sum=0; int i,count=0; for(i=…… 题解列表 2018年08月24日 0 点赞 0 评论 446 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){int n=0,s=0,a[10],i,t;for(i=0;i<10;i++)scanf("%d",&a[i]);for(…… 题解列表 2018年08月15日 0 点赞 0 评论 433 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:最简单的循环实现注意事项:参考代码:#include<stdio.h>int main(){ int i,j=0,a[10],aver,sum=0; for(i=0;i<10;i…… 题解列表 2018年07月07日 0 点赞 0 评论 354 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define N 10 int main() { int a[N], i, j =0; float ave =…… 题解列表 2018年05月03日 0 点赞 0 评论 526 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:/* 2018年5月2日19:13:08 目的: 输入10个数,求它们的平均值,并输出大于平均值的数据的个数。 */ #include <stdio.h> int main (vo…… 题解列表 2018年05月02日 0 点赞 0 评论 570 浏览 评分:2.0