WU-2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a[50],i=0,y=0,t=0,b=0; for(i=0;i<50;i++) { sca…… 题解列表 2017年12月14日 1 点赞 0 评论 940 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (Java代码) 摘要:import java.util.*; public class Main { public static void main(String[] args) { Scanner cin=n…… 题解列表 2017年12月26日 0 点赞 0 评论 1306 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:判断语句的嵌套使用注意事项:参考代码:#include<stdio.h>int main(){int a,b=0,c=0,d=0;scanf("%d",&a);while(a>0){if(a…… 题解列表 2018年01月10日 4 点赞 0 评论 934 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路: 参考代码。注意事项:输出放的位置。参考代码:#include<stdio.h>#include <math.h>#include <string.h>#define N 10int ma…… 题解列表 2018年01月17日 2 点赞 0 评论 952 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:万一有0分的学生就gg了。参考代码:#include <iostream>using namespace std;int main(){ int grade, x(0), …… 题解列表 2018年02月08日 0 点赞 0 评论 888 浏览 评分:0.0
简略 易懂解法思路(参考) 摘要:解题思路:注意事项:1.敲代码时不要 抠脚。2.看了不好就说,觉得还行就要赞。参考代码:#include<stdio.h> #include<math.h> int main() { int…… 题解列表 2018年03月09日 0 点赞 0 评论 638 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)//利用逗号语句,if else中不必写那么多判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int score; int a,b,c; a = b = c = 0; …… 题解列表 2018年03月23日 0 点赞 0 评论 719 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)输入0或者负数时退出 摘要:参考代码如下:#include <stdio.h> #include <math.h> int main() { int num1 = 0; int num2 = 0; …… 题解列表 2018年03月30日 0 点赞 0 评论 983 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (Java代码) 摘要:解题思路:注意事项:啦啦啦!参考代码:import java.util.Scanner;public class Main { public static void main(String[] …… 题解列表 2018年04月15日 0 点赞 0 评论 965 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:while(scanf("%d",&n)==1 && n>0)不断输入,直至零或负数跳出注意事项:计数的变量要初始为0,以及输出格式参考代码:#include<stdio.h>int mai…… 题解列表 2018年04月26日 0 点赞 0 评论 726 浏览 评分:0.0