演讲大赛评分 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int …… 题解列表 2018年06月01日 0 点赞 0 评论 1223 浏览 评分:0.0
求组合数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b)…… 题解列表 2018年06月01日 0 点赞 0 评论 1203 浏览 评分:2.0
C语言训练-字符串正反连接 (C++代码) 摘要:注意事项:VS2017是gets_s()不是gets().参考代码:#include<iostream> #include<cstring> using namespace std; int m…… 题解列表 2018年06月01日 1 点赞 0 评论 1078 浏览 评分:6.0
C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int i; char s[101]; gets…… 题解列表 2018年06月01日 0 点赞 0 评论 1062 浏览 评分:0.0
C语言训练-列出最简真分数序列* (C++代码) 摘要:解题思路:参考代码:#include<iostream> using namespace std; int main() { int i,j; int v[7] = { 2,4,5,8,…… 题解列表 2018年06月01日 1 点赞 0 评论 1303 浏览 评分:9.9
C语言训练-亲密数 (C++代码) 摘要:解题思路:数组标记解决重复问题。参考代码:#include<iostream> using namespace std; int book[3001]; int main() { int …… 题解列表 2018年06月01日 0 点赞 0 评论 792 浏览 评分:0.0
C语言训练-"水仙花数"问题2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; i…… 题解列表 2018年06月01日 0 点赞 0 评论 800 浏览 评分:6.0
C语言训练-"水仙花数"问题1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; i…… 题解列表 2018年06月01日 1 点赞 5 评论 805 浏览 评分:8.0
开心的金明 (C语言代码)------------------C语言——菜鸟级 摘要:解题思路: 经典 01背包问题 注意事项:参考代码:#include <stdio.h> #include <string.h> #define M 30010 #define Max(a,b)…… 题解列表 2018年06月01日 10 点赞 0 评论 2633 浏览 评分:9.1
母牛生小牛 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) {…… 题解列表 2018年05月31日 0 点赞 0 评论 1064 浏览 评分:0.0