C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:不要問我為什麼,直接暴力輸出。。。。注意事项:不喜欢暴力的童鞋绕路。。。。参考代码:#include <stdio.h>#include <stdlib.h>int main() { int…… 题解列表 2019年01月17日 0 点赞 0 评论 404 浏览 评分:0.0
C二级辅导-阶乘数列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double s1 = 1,s2 = 1; int i,j,n; for(i = 2; i <= 30; …… 题解列表 2019年01月18日 0 点赞 0 评论 678 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a[10]; int pos = 0,min = 0x7ffff…… 题解列表 2019年01月18日 0 点赞 0 评论 676 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>double fact(int n){ double ans = 1.0; int i; for(i = 2; i <= n; i+…… 题解列表 2019年01月18日 0 点赞 0 评论 780 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int x; double ans; scanf("%d", &x); …… 题解列表 2019年01月18日 0 点赞 0 评论 512 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void ctof(int c){ int i; for(i = c; i <= 150; i += 5) printf("c=%…… 题解列表 2019年01月18日 0 点赞 0 评论 627 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int map[6][6]; int i,j,n; int r,c,ma…… 题解列表 2019年01月18日 0 点赞 0 评论 534 浏览 评分: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 评论 926 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>double fact(int n){ double ans = 1.0; int i; for(i = 2; i <= n; i+…… 题解列表 2019年01月18日 0 点赞 0 评论 414 浏览 评分:0.0
字符串的输入输出处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[200][1001]; int i,n,index; scanf("%d\n", &n); i…… 题解列表 2019年01月18日 0 点赞 0 评论 660 浏览 评分:0.0