C二级辅导-计负均正 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int num[20]={0},count=0,i,j=0; float sum=0; for…… 题解列表 2017年08月27日 0 点赞 0 评论 770 浏览 评分:0.0
C二级辅导-统计字符 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a,b,c,d; char s[100]={0}; i=a=b=c=d=0; …… 题解列表 2017年08月27日 0 点赞 0 评论 607 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int num[10]={0},t; int i,tem=0; …… 题解列表 2017年08月27日 0 点赞 1 评论 574 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c,f; for(c=-100;c<=150;c+=5) { f=32+…… 题解列表 2017年08月27日 0 点赞 0 评论 713 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,a,b,i,j; int num[10][10]={0}…… 题解列表 2017年08月27日 0 点赞 0 评论 530 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; float score; a=b=c=0; while(scanf…… 题解列表 2017年08月27日 0 点赞 0 评论 1008 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int n);int main(){ double sum=0; int i,n; scanf…… 题解列表 2017年08月27日 0 点赞 0 评论 636 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b;//定义两个变量a,b while(~scanf("%d%d", &a, &b))p…… 题解列表 2017年08月27日 2 点赞 0 评论 857 浏览 评分:0.0
C语言考试练习题_一元二次方程 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float a,b,c,d,x1,x2,t; scanf("%f%f…… 题解列表 2017年08月27日 0 点赞 0 评论 870 浏览 评分:0.0