老王赛马(C++语言逐一比较) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>#include<set>#include<string>#inc…… 题解列表 2022年02月09日 0 点赞 0 评论 498 浏览 评分:0.0
Hifipsysta-2024-链表删除练习(C++代码) 摘要:```cpp #include using namespace std; struct node{ int data; node* next; }; node…… 题解列表 2022年02月09日 0 点赞 0 评论 429 浏览 评分:0.0
1118: Tom数(C语言版) 摘要:```c #include #include void main() { char str[10]={ '0' }; while (scanf("%s", str) != …… 题解列表 2022年02月09日 0 点赞 4 评论 725 浏览 评分:7.3
统计立方数(C++语言) 摘要:解题思路:将int范围内所有的立方数统计在一个数组里注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>#include<set…… 题解列表 2022年02月09日 0 点赞 0 评论 604 浏览 评分:0.0
1116: IP判断(C语言版) 摘要:```c #include void main() { int i, j, k, l; int q; char str[100]; while ((q=s…… 题解列表 2022年02月09日 0 点赞 0 评论 455 浏览 评分:9.0
1115: DNA(C语言版) 摘要:**具体代码:** ```c #include void main() { int n, a, b; char arr[40][40] = {' '}; scan…… 题解列表 2022年02月09日 0 点赞 0 评论 445 浏览 评分:9.9
1111: Cylinder 摘要:解题思路:  图片引用自kevin的文章 具体代码: ```c #include #de…… 题解列表 2022年02月09日 0 点赞 0 评论 627 浏览 评分:9.9
1097: 蛇行矩阵(C语言版) 摘要:简单的找规律 具体代码: ```c #include void main() { int n; while (scanf("%d", &n) != EOF) {…… 题解列表 2022年02月09日 0 点赞 0 评论 350 浏览 评分:9.9
1096: Minesweeper(c++版) 摘要:**题意:** 挖地雷"这个游戏的目的是在M*N的地雷区格子中找出所有的地雷。为了要帮助你,这个游戏会在非地雷的格子上有些数字,告诉你这一个格子的邻居共有多少个地雷。例如:以下4*4…… 题解列表 2022年02月09日 0 点赞 0 评论 406 浏览 评分:9.9
1095: The 3n + 1 problem(C语言版) 摘要:**题意:** 1、对于整数n,如果n是偶数,则除以2。如果n是奇数,乘以3加1,当n=1时终止。 2、输入:整数i和j 3、循环长度是指在1之前(包括1)生成的数。 3、输出:输出i和j的顺…… 题解列表 2022年02月09日 0 点赞 0 评论 597 浏览 评分:6.0