求最大公约数-模板题 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>#include <cstring>using namespace std;int gcd(in…… 题解列表 2017年07月26日 0 点赞 0 评论 1388 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题7.3 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>#include <cstring>using namespace std;int main()…… 题解列表 2017年07月26日 0 点赞 0 评论 1032 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>#include <cstring>using namespace std;int main()…… 题解列表 2017年07月26日 0 点赞 0 评论 1504 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题6.3 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int a=2; int…… 题解列表 2017年07月26日 0 点赞 0 评论 1127 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int x; sca…… 题解列表 2017年07月26日 0 点赞 0 评论 1043 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int x; scanf("…… 题解列表 2017年07月26日 0 点赞 0 评论 1117 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>using namespace std;int main(){ int x; scanf…… 题解列表 2017年07月26日 0 点赞 0 评论 974 浏览 评分: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 评论 1225 浏览 评分: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 评论 1047 浏览 评分:0.0
【作业调度方案】 (C语言代码) 摘要:我们现在要利用m台机器加工n个工件,每个工件都有m道工序,每道工序都在不同的指定的机器上完成。每个工件的每道工序都有指定的加工时间。 每个工件的每个工序称为一个操作,我们用记号j-k表示一个操作,其…… 题解列表 2017年07月26日 4 点赞 8 评论 1333 浏览 评分:2.0