小O的数字 (C语言代码) 摘要:#include<stdio.h> int main() { int i,n,k,kk,s,x; char a0[5][4]={"***","* *","* *","* *",…… 题解列表 2018年05月31日 0 点赞 0 评论 937 浏览 评分:0.0
检查金币 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; w…… 题解列表 2018年05月31日 1 点赞 0 评论 947 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:解题思路:数组双头通过中间值交换就可以;注意事项:参考代码:# include<stdio.h>int main(){ int i = 0, j = 0, temp = 0; int a[…… 题解列表 2018年05月31日 0 点赞 0 评论 574 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.4 (C语言代码) 摘要:解题思路:第一判断在第几个字符插入,然后腾出空间,最后写入。注意事项:参考代码:# include<stdio.h>int main(){ int i = 0, j = 0, temp = 0,…… 题解列表 2018年05月31日 0 点赞 0 评论 588 浏览 评分: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 评论 709 浏览 评分: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 评论 1681 浏览 评分:0.0
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 评论 614 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:# include<stdio.h>int main(){ int i=0, j, temp = 1; int str[10]; while (i!=1…… 题解列表 2018年05月31日 0 点赞 0 评论 481 浏览 评分:0.0
优质题解 C语言考试练习题_排列 (C++代码) 摘要:解题思路:提供一种顺序正确的做。观察输出结果,可以分为4组;第一组没有4,第二组没有3,第三组没有2,第四组没有1。解决方法,分为4组,从第一组开始,使用dfs算法。dfs中有两个参数cur,cont…… 题解列表 2018年05月31日 8 点赞 7 评论 3378 浏览 评分:9.4
写的比较差一点,不过还是贴出来吧a 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>//全局变量计数的numint num=0;void chuli(int N,int K);int …… 题解列表 2018年05月31日 0 点赞 0 评论 1296 浏览 评分:0.0