C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 100struct student{ char num[10]; char name[10]; i…… 题解列表 2017年12月17日 0 点赞 0 评论 847 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>char b[80];void cp(int n,char s[],int m){ int…… 题解列表 2017年12月17日 0 点赞 0 评论 847 浏览 评分:0.0
回文数(一) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(void){ int i, j, l, k, m, x, y, z, h, gao…… 题解列表 2017年12月18日 0 点赞 0 评论 1019 浏览 评分:0.0
检查金币 (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 评论 1082 浏览 评分:0.0
马拦过河卒 (C语言代码) 摘要:解题思路:用递归遍历每一种情况,并且根据马的位置去掉不能走过的点注意事项:参考代码:#include <stdio.h>int computer(int x1, int y1, int x, int …… 题解列表 2017年12月18日 0 点赞 0 评论 1426 浏览 评分:0.0
剔除相关数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>typedef struct Node{ int pre; int change; int flag…… 题解列表 2017年12月18日 0 点赞 0 评论 817 浏览 评分: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 评论 960 浏览 评分: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 评论 1277 浏览 评分: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 评论 785 浏览 评分: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 评论 944 浏览 评分:0.0