C语言程序设计教程(第三版)课后习题10.3 (C语言代码) 摘要:解题思路:这题日了狗了,不知道为啥过不了注意事项:参考代码:/* search and handle */ #include<stdio.h> #define N 10 void searc…… 题解列表 2017年10月30日 3 点赞 0 评论 1423 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.10 (C语言代码) 摘要:解题思路:用函数递归思想解题。注意事项:需说明最后一步递归时,还剩一个桃子。参考代码:#include <stdio.h>int main(){ int wap(int d); int x,y; sc…… 题解列表 2017年10月30日 1 点赞 0 评论 707 浏览 评分:0.0
A+B for Input-Output Practice (I) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c,d,e;scanf("%d%d",&a,&b);scanf("%d%d",&c,&d);e=a…… 题解列表 2017年10月30日 0 点赞 0 评论 885 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while (n--) { scanf("%d%d",…… 题解列表 2017年10月30日 0 点赞 0 评论 819 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main{ int a,b; while(~scanf("%d%d", &a, &b)) { if…… 题解列表 2017年10月30日 0 点赞 0 评论 756 浏览 评分:0.0
A+B for Input-Output Practice (IV) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int t, a, sum, i; scanf("%d", &t); do { &nb 题解列表 2017年10月30日 0 点赞 0 评论 661 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(int argc,char**argv){ int a,m; scanf("%d",&a); m=i…… 题解列表 2017年10月30日 0 点赞 0 评论 799 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(void){ printf("**************************\n"); printf("Holle Wo…… 题解列表 2017年10月30日 0 点赞 0 评论 833 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void zhuangzhi (int a[][3])//装置函数{ int i,j,t; for(i=0;i<3;i++)…… 题解列表 2017年10月30日 0 点赞 0 评论 1133 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { char s[100], t[50]; int len; i…… 题解列表 2017年10月30日 1 点赞 0 评论 939 浏览 评分:0.0