c++代码,非常原始 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n; scanf("%d",&n); if(n>=90) { printf("A…… 题解列表 2022年02月09日 0 点赞 0 评论 780 浏览 评分:6.0
连续自然数和(第一想法就是暴力解决) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>#include<set>#include<string>#inc…… 题解列表 2022年02月09日 0 点赞 0 评论 402 浏览 评分:0.0
Hifipsysta-1771-[编程入门]链表之节点删除(C++代码) 摘要:```cpp #include using namespace std; struct node{ int id; int score; node* next;…… 题解列表 2022年02月09日 0 点赞 1 评论 401 浏览 评分:9.9
超级楼梯(递归的是神,迭代的是人) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>#include<set>#include<string>#inc…… 题解列表 2022年02月09日 0 点赞 0 评论 469 浏览 评分:0.0
老王赛马(C++语言逐一比较) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>#include<set>#include<string>#inc…… 题解列表 2022年02月09日 0 点赞 0 评论 499 浏览 评分:0.0
Hifipsysta-2024-链表删除练习(C++代码) 摘要:```cpp #include using namespace std; struct node{ int data; node* next; }; node…… 题解列表 2022年02月09日 0 点赞 0 评论 431 浏览 评分:0.0
统计立方数(C++语言) 摘要:解题思路:将int范围内所有的立方数统计在一个数组里注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>#include<set…… 题解列表 2022年02月09日 0 点赞 0 评论 608 浏览 评分:0.0
1096: Minesweeper(c++版) 摘要:**题意:** 挖地雷"这个游戏的目的是在M*N的地雷区格子中找出所有的地雷。为了要帮助你,这个游戏会在非地雷的格子上有些数字,告诉你这一个格子的邻居共有多少个地雷。例如:以下4*4…… 题解列表 2022年02月09日 0 点赞 0 评论 410 浏览 评分:9.9
1084: 用筛法求之N内的素数(c++版) 摘要:** 具体代码:** ```cpp #include using namespace std; int main() { int n; cin >> n; for (int i …… 题解列表 2022年02月09日 0 点赞 0 评论 348 浏览 评分:0.0
Hifipsysta-1585-蓝桥杯算法训练VIP-链表数据求和操作(C++代码)真链表数据域求和 摘要:```cpp #include using namespace std; const int MAXN = 100; struct node{ int real; in…… 题解列表 2022年02月09日 0 点赞 0 评论 445 浏览 评分:0.0