C二级辅导-计负均正 (C语言代码) 摘要:#include<stdio.h> int main(void) { int i,count=0,count1=0,av=0,t; for(i=0;i<20;i++) …… 题解列表 2017年07月24日 0 点赞 0 评论 732 浏览 评分:0.0
C二级辅导-公约公倍 (C语言代码) 摘要:#include<stdio.h> int main(void) { int n,m,i,t,j; scanf("%d%d",&m,&n); if(m>n) t=m,…… 题解列表 2017年07月24日 0 点赞 0 评论 1045 浏览 评分:8.0
C二级辅导-统计字符 (C语言代码) 摘要:/*输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数*/ #include<stdio.h> #include<ctype.h> int main(void) { c…… 题解列表 2017年07月24日 2 点赞 0 评论 1464 浏览 评分:0.0
C二级辅导-阶乘数列 (C语言代码) 摘要:#include<stdio.h> typedef double ll; int main(void) { ll sum=0,t=1; int i; for(i=1…… 题解列表 2017年07月24日 0 点赞 0 评论 846 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main(void) { int i,t,m,a[10]; for(i=0;i<10;i++) …… 题解列表 2017年07月24日 0 点赞 9 评论 1009 浏览 评分:7.3
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h> double fact(int a) { if(a<0) return -1; else if(a==1|| a==0) return …… 题解列表 2017年07月24日 0 点赞 0 评论 831 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:#include <stdio.h> int main() { int a[10],b[10],i; for(i=0;i<10;i++) { scanf("%d",&a[i]);…… 题解列表 2017年07月24日 0 点赞 0 评论 951 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<iostream> #include<cstdio> #include<cmath> using namespace std; int main(void) { …… 题解列表 2017年07月24日 0 点赞 0 评论 1001 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<iostream> using namespace std; int ctof(int c) { return 32+c*9/5; } int main(voi…… 题解列表 2017年07月24日 0 点赞 0 评论 1126 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<iostream> #include<cstdio> using namespace std; int main(void) { int a=0,b=0,c=0,t…… 题解列表 2017年07月24日 1 点赞 0 评论 1660 浏览 评分:7.3