C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:简单明了注意事项:参考代码:# include<stdio.h>int main(){ int i=0; int str1[3],str2[3],str3[3]; whil…… 题解列表 2018年05月31日 0 点赞 0 评论 618 浏览 评分:0.0
小O的乘积 (C语言代码) 摘要:#include<stdio.h> int main() { int i,n,a[100000],a1,a2,a3,a4,a5,a6,b1,b2,xb1,xb2; while(scanf(…… 题解列表 2018年05月31日 0 点赞 0 评论 1688 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,i; b=0; c=1; scanf ("%d",&a); for…… 题解列表 2018年05月31日 0 点赞 0 评论 713 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.4 (C语言代码) 摘要:解题思路:第一判断在第几个字符插入,然后腾出空间,最后写入。注意事项:参考代码:# include<stdio.h>int main(){ int i = 0, j = 0, temp = 0,…… 题解列表 2018年05月31日 0 点赞 0 评论 594 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:解题思路:数组双头通过中间值交换就可以;注意事项:参考代码:# include<stdio.h>int main(){ int i = 0, j = 0, temp = 0; int a[…… 题解列表 2018年05月31日 0 点赞 0 评论 575 浏览 评分:0.0
小O的数字 (C语言代码) 摘要:#include<stdio.h> int main() { int i,n,k,kk,s,x; char a0[5][4]={"***","* *","* *","* *",…… 题解列表 2018年05月31日 0 点赞 0 评论 944 浏览 评分:0.0
母牛生小牛 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2018年05月31日 0 点赞 0 评论 1074 浏览 评分:0.0
C语言训练-亲密数 (C++代码) 摘要:解题思路:数组标记解决重复问题。参考代码:#include<iostream> using namespace std; int book[3001]; int main() { int …… 题解列表 2018年06月01日 0 点赞 0 评论 798 浏览 评分:0.0
C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int i; char s[101]; gets…… 题解列表 2018年06月01日 0 点赞 0 评论 1072 浏览 评分:0.0
演讲大赛评分 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int …… 题解列表 2018年06月01日 0 点赞 0 评论 1232 浏览 评分:0.0