生日日数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int check(int n) { if((n%4==0&&n%100)||(…… 题解列表 2018年06月01日 0 点赞 0 评论 1891 浏览 评分:0.0
班级人数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { float a,b; while(cin>>a>>…… 题解列表 2018年06月01日 0 点赞 0 评论 1747 浏览 评分:6.0
演讲大赛评分 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int …… 题解列表 2018年06月01日 0 点赞 0 评论 1540 浏览 评分:0.0
求组合数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b)…… 题解列表 2018年06月01日 0 点赞 0 评论 1532 浏览 评分:2.0
C语言训练-字符串正反连接 (C++代码) 摘要:注意事项:VS2017是gets_s()不是gets().参考代码:#include<iostream> #include<cstring> using namespace std; int m…… 题解列表 2018年06月01日 1 点赞 0 评论 1259 浏览 评分:6.0
C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int i; char s[101]; gets…… 题解列表 2018年06月01日 0 点赞 0 评论 1520 浏览 评分: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 评论 1476 浏览 评分:9.9
C语言训练-亲密数 (C++代码) 摘要:解题思路:数组标记解决重复问题。参考代码:#include<iostream> using namespace std; int book[3001]; int main() { int …… 题解列表 2018年06月01日 0 点赞 0 评论 1056 浏览 评分:0.0
C语言训练-"水仙花数"问题2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; i…… 题解列表 2018年06月01日 0 点赞 0 评论 1027 浏览 评分:6.0
C语言训练-"水仙花数"问题1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; i…… 题解列表 2018年06月01日 1 点赞 5 评论 916 浏览 评分:8.0