C语言程序设计教程(第三版)课后习题10.5 (C语言代码) 摘要:#include<stdio.h> #include<malloc.h> int main() { int *a; int m,n,i,j=0,sum=0; …… 题解列表 2018年05月17日 0 点赞 0 评论 1222 浏览 评分:9.9
校门外的树 (C++代码) 摘要:解题思路:将需要砍得数标记为1,统计为1的树的棵树,用总的减去时间:2018-05-17注意事项:总棵数为L+1参考代码:#include<iostream>#include<stdlib.h>#in…… 题解列表 2018年05月17日 0 点赞 0 评论 868 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.3 (C语言代码) 摘要:#include<stdio.h> int get_array(int a[]); int exchange(int a[]); int printf_array(int a[]); int …… 题解列表 2018年05月17日 2 点赞 0 评论 1802 浏览 评分:0.0
回文串 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int M=255+5; char…… 题解列表 2018年05月16日 0 点赞 0 评论 1572 浏览 评分:0.0
发工资咯 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int a[6]={100,50,10,5,2,1}; int main() { …… 题解列表 2018年05月16日 0 点赞 0 评论 972 浏览 评分:0.0
去掉空格 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string st…… 题解列表 2018年05月16日 0 点赞 0 评论 1831 浏览 评分:0.0
去掉双斜杠注释 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include<cstring> #include<cstdio> #include<string> using nam…… 题解列表 2018年05月16日 0 点赞 0 评论 1603 浏览 评分:0.0
【排队买票】 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 排队买票 { public static int count = 0; public static void qpl(char[] ch…… 题解列表 2018年05月16日 1 点赞 0 评论 2293 浏览 评分:2.0
不容易系列2 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 不容易系列2 { //满足条件的计数器 public static int count = 0; /** * 全排列算法 …… 题解列表 2018年05月16日 0 点赞 0 评论 1471 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:通过使用三目运算符来解题注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,…… 题解列表 2018年05月16日 0 点赞 0 评论 804 浏览 评分:0.0