蛇形矩阵(JAVA)自然数输入(较麻烦) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2022年10月06日 0 点赞 0 评论 576 浏览 评分:9.9
简单的 a + b 摘要: #include using namespace std; int main() { int a, b; while (cin >…… 题解列表 2022年10月06日 0 点赞 0 评论 434 浏览 评分:9.9
第一个 Hello World 程序 摘要: #include using namespace std; int main() { cout …… 题解列表 2022年10月06日 0 点赞 0 评论 321 浏览 评分:0.0
三个数最大值(传统打擂法) 摘要: #include using namespace std; int main() { int a, b, c , max; cin >> …… 题解列表 2022年10月06日 0 点赞 0 评论 360 浏览 评分:0.0
密码破译(直接法) 摘要: #include using namespace std; int main() { char c1, c2, c3, c4, c5; c…… 题解列表 2022年10月06日 0 点赞 0 评论 427 浏览 评分:0.0
母牛的故事 摘要: #include using namespace std; int main() { int a[55] = { 0,1,2,3,4 }, i, n;…… 题解列表 2022年10月06日 0 点赞 0 评论 341 浏览 评分:0.0
1074: 数字整除 摘要: #include #include using namespace std; int main() { string s; in…… 题解列表 2022年10月06日 1 点赞 0 评论 627 浏览 评分:9.9
1047-报数问题 摘要:解题思路:注意事项:参考代码:/*约瑟夫环问题:1) 递推公式:f(n,m)=(f(n-1,m)+m)%n //f(m,n) 表示n个人报数,每报到m时杀掉那个人,最终胜利者的编号。 2) 递推公式…… 题解列表 2022年10月06日 0 点赞 0 评论 376 浏览 评分:0.0
1048-自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;string copy(int m,char a[]){ s…… 题解列表 2022年10月06日 0 点赞 0 评论 398 浏览 评分: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 评论 365 浏览 评分:0.0