2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 编写程序,输入一批学生的成绩,遇0或负数则输入结束,要求统计并输出优秀(大于85)、通过(60~84)和不及格(小于60)的学生人数。运行示例: */#includ…… 题解列表 2019年01月31日 0 点赞 0 评论 663 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int score; int count1 = 0,count2 = 0,count3 = 0; while…… 题解列表 2019年01月18日 0 点赞 0 评论 565 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:最后的输出格式参考代码:#include<stdio.h>int main() { int n,i=0,j=0,k=0; do { scanf("%d",&n); if(n>8…… 题解列表 2018年12月27日 0 点赞 0 评论 383 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:无参考代码:#include<stdio.h>int main(){ int a[100],i=0; // 定义 i 既可以记住输入个数 ,还可以用来控制循环,变量多用…… 题解列表 2018年12月21日 1 点赞 0 评论 450 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h> int main() { int scores[1000],score,i=0,j,excellent=0,pass=0,unpass=0; …… 题解列表 2018年11月23日 0 点赞 0 评论 570 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:不用设立for循环的截止条件,在循环中控制就好参考代码:#include<stdio.h> int main() { int a[80]; int i,y=0,t=0,…… 题解列表 2018年10月29日 0 点赞 0 评论 423 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <algorithm> #includ…… 题解列表 2018年10月28日 0 点赞 0 评论 556 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int i=0,j; int a=0,b=0,c=0; int arr[10086]…… 题解列表 2018年10月22日 0 点赞 0 评论 435 浏览 评分:0.0
[优质题解]2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100],y=0,t=0,b=0; for(int i=0;;i++) { scanf("%d",…… 题解列表 2018年08月28日 3 点赞 0 评论 664 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[50],i=0; int count1=0,count2=0,count3=0; …… 题解列表 2018年08月25日 0 点赞 0 评论 598 浏览 评分:0.0