C语言程序设计教程(第三版)课后习题6.2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>#include <cstring>using namespace std;int main()…… 题解列表 2017年07月26日 0 点赞 0 评论 1343 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题6.3 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int a=2; int…… 题解列表 2017年07月26日 0 点赞 0 评论 1015 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int x; sca…… 题解列表 2017年07月26日 0 点赞 0 评论 887 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int x; scanf("…… 题解列表 2017年07月26日 0 点赞 0 评论 1027 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int x; scanf…… 题解列表 2017年07月26日 0 点赞 0 评论 887 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.4 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int a,b,c; s…… 题解列表 2017年07月26日 0 点赞 0 评论 1106 浏览 评分:0.0
The 3n + 1 problem (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int fun(int n){ int k=1; if(n==1) { return k; } while(n!=1) {…… 题解列表 2017年07月26日 0 点赞 0 评论 989 浏览 评分:0.0
【作业调度方案】 (C语言代码) 摘要:我们现在要利用m台机器加工n个工件,每个工件都有m道工序,每道工序都在不同的指定的机器上完成。每个工件的每道工序都有指定的加工时间。 每个工件的每个工序称为一个操作,我们用记号j-k表示一个操作,其…… 题解列表 2017年07月26日 4 点赞 8 评论 1267 浏览 评分:2.0
输出九九乘法表 (C语言代码) 摘要:解题思路:两重循环没什么难度吧,主要就是制表要跟它完全一样太恶心。。。要很仔细地观察,我改了3次才改的完全一样参考代码:#include<stdio.h>int main(){ prin…… 题解列表 2017年07月25日 0 点赞 1 评论 1882 浏览 评分:8.7
指针做法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>move(int *a,int *b,int m,int n);int main(){ int i,a[1024],b[1024]…… 题解列表 2017年07月25日 3 点赞 0 评论 1177 浏览 评分:0.0