检查金币 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(void){ int num[10]; int i, j, k, l, q, w,…… 题解列表 2017年12月18日 0 点赞 0 评论 1424 浏览 评分:0.0
马拦过河卒 (C语言代码) 摘要:解题思路:用递归遍历每一种情况,并且根据马的位置去掉不能走过的点注意事项:参考代码:#include <stdio.h>int computer(int x1, int y1, int x, int …… 题解列表 2017年12月18日 0 点赞 0 评论 1646 浏览 评分:0.0
剔除相关数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>typedef struct Node{ int pre; int change; int flag…… 题解列表 2017年12月18日 0 点赞 0 评论 1097 浏览 评分:0.0
花落的新手写法(C语言代码)~ 摘要:解题思路:注意事项:会超时参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int pow(int n){ int i,sum=1; …… 题解列表 2017年12月18日 0 点赞 0 评论 1213 浏览 评分:0.0
WU-C语言考试练习题_保留字母 (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { char str[80],*p; int i; p=str; gets(str); for(i=0;st…… 题解列表 2017年12月18日 3 点赞 0 评论 1960 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int is_prime(int x){ int i; if(x<=1) return 0; for(…… 题解列表 2017年12月18日 0 点赞 0 评论 1232 浏览 评分:0.0
花落的新手代码 (C语言代码) 摘要:解题思路:注意事项:注意多行输入,并且注意每次遇到.都要判断前导0参考代码:#include<stdio.h>int main(){ char sz[100][30]; int n=0,t=0,i,j…… 题解列表 2017年12月18日 0 点赞 0 评论 1272 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>double fact(int k);double fact(k){ double sum…… 题解列表 2017年12月18日 0 点赞 0 评论 984 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int i,j,n,a[80][80],maxi,maxj,max…… 题解列表 2017年12月18日 0 点赞 0 评论 1068 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>int main(){ double x,y; s…… 题解列表 2017年12月18日 0 点赞 0 评论 1042 浏览 评分:0.0