1050-结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char num[10]; char name…… 题解列表 2022年10月06日 0 点赞 0 评论 168 浏览 评分:0.0
1049-结构体之时间设计 摘要:解题思路:注意事项:参考代码:/*天数问题:1、3、5、7、8、10、12月:31天4、6、9、11月:30天2月:非闰年有28天,闰年有29天 闰年特点:1) 4的倍数,不是100的倍数2) 400…… 题解列表 2022年10月06日 0 点赞 0 评论 199 浏览 评分:0.0
1048-自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;string copy(int m,char a[]){ s…… 题解列表 2022年10月06日 0 点赞 0 评论 239 浏览 评分:0.0
1047-报数问题 摘要:解题思路:注意事项:参考代码:/*约瑟夫环问题:1) 递推公式:f(n,m)=(f(n-1,m)+m)%n //f(m,n) 表示n个人报数,每报到m时杀掉那个人,最终胜利者的编号。 2) 递推公式…… 题解列表 2022年10月06日 0 点赞 0 评论 203 浏览 评分:0.0
1074: 数字整除 摘要: #include #include using namespace std; int main() { string s; in…… 题解列表 2022年10月06日 1 点赞 0 评论 439 浏览 评分:9.9
母牛的故事 摘要: #include using namespace std; int main() { int a[55] = { 0,1,2,3,4 }, i, n;…… 题解列表 2022年10月06日 0 点赞 0 评论 201 浏览 评分:0.0
密码破译(直接法) 摘要: #include using namespace std; int main() { char c1, c2, c3, c4, c5; c…… 题解列表 2022年10月06日 0 点赞 0 评论 241 浏览 评分:0.0
三个数最大值(传统打擂法) 摘要: #include using namespace std; int main() { int a, b, c , max; cin >> …… 题解列表 2022年10月06日 0 点赞 0 评论 212 浏览 评分:0.0
第一个 Hello World 程序 摘要: #include using namespace std; int main() { cout …… 题解列表 2022年10月06日 0 点赞 0 评论 188 浏览 评分:0.0
简单的 a + b 摘要: #include using namespace std; int main() { int a, b; while (cin >…… 题解列表 2022年10月06日 0 点赞 0 评论 261 浏览 评分:9.9