[编程入门]猴子吃桃的问题 (C语言代码) 摘要:解题思路:反推求解 注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int print[4];vo…… 题解列表 2019年04月20日 0 点赞 0 评论 1232 浏览 评分:0.0
[编程入门]水仙花数判断 (C语言代码) 摘要:解题思路:三个变量 判断一下 yes就输出注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int …… 题解列表 2019年04月20日 0 点赞 0 评论 1353 浏览 评分:6.0
[编程入门]阶乘求和 (C语言代码) 摘要:求和注意方法 可以更高效率注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int print[4]…… 题解列表 2019年04月20日 0 点赞 0 评论 1187 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 (C语言代码) 摘要:解题思路:辗转相除法注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int print[4];vo…… 题解列表 2019年04月20日 0 点赞 0 评论 713 浏览 评分:0.0
[编程入门]成绩评定 (C语言代码) 摘要:解题思路:for 嵌套 if else注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int pr…… 题解列表 2019年04月20日 0 点赞 0 评论 1138 浏览 评分:0.0
[编程入门]温度转换 (C语言代码) 摘要:解题思路:把公式写进去注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int print[4];v…… 题解列表 2019年04月20日 0 点赞 0 评论 1492 浏览 评分:5.8
[编程入门]三个数最大值 (C语言代码) 摘要:解题思路:max = max(max,max)就可以了注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5…… 题解列表 2019年04月20日 0 点赞 0 评论 1725 浏览 评分:0.0
[编程入门]第一个HelloWorld程序! (C语言代码) 摘要:解题思路:复制粘贴注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int print[4];voi…… 题解列表 2019年04月20日 0 点赞 0 评论 1389 浏览 评分:2.0
[竞赛入门]简单的a+b (C语言代码) 摘要:解题思路:直接法注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int print[4];void…… 题解列表 2019年04月20日 0 点赞 0 评论 965 浏览 评分:0.0
C语言考试练习题_保留字母 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(int argc, cha…… 题解列表 2019年04月20日 0 点赞 0 评论 1337 浏览 评分:0.0