2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int score; int count1 = 0,count2 = 0,count3 = 0; while…… 题解列表 2019年01月18日 0 点赞 0 评论 352 浏览 评分: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 评论 321 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:无参考代码:#include<stdio.h>int main(){ int a[100],i=0; // 定义 i 既可以记住输入个数 ,还可以用来控制循环,变量多用…… 题解列表 2018年12月21日 1 点赞 0 评论 353 浏览 评分: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 评论 477 浏览 评分: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 评论 328 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <algorithm> #includ…… 题解列表 2018年10月28日 0 点赞 0 评论 487 浏览 评分: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 评论 322 浏览 评分: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 评论 548 浏览 评分: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 评论 522 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float grade; int a = 0, b = 0, c = 0; while (scanf("%f",…… 题解列表 2018年07月15日 1 点赞 0 评论 506 浏览 评分:0.0