Java 简单 容易 摘要:import java.util.Scanner;public class dotcpp1030 { public static void main(String[] args) { …… 题解列表 2022年02月08日 0 点赞 0 评论 392 浏览 评分:0.0
简单的a+b(java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2022年02月09日 0 点赞 0 评论 701 浏览 评分:0.0
Hifipsysta-1052-[编程入门]链表合并(C++代码)循环链表的冒泡排序 摘要: ```cpp #include #include using namespace std; struct node{ int id; int score; …… 题解列表 2022年02月09日 0 点赞 0 评论 525 浏览 评分: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 评论 369 浏览 评分:0.0
1490: 蓝桥杯算法提高VIP-五次方数 摘要:解题思路:注意事项:参考代码:for i in range(2,300000): s=0 for j in str(i): s += int(j)**5 …… 题解列表 2022年02月09日 0 点赞 0 评论 303 浏览 评分:0.0
1084: 用筛法求之N内的素数(c++版) 摘要:** 具体代码:** ```cpp #include using namespace std; int main() { int n; cin >> n; for (int i …… 题解列表 2022年02月09日 0 点赞 0 评论 278 浏览 评分:0.0
1093: 字符逆序(C语言版) 摘要:**具体代码:** ```c #include #include int main() { char str[100]; gets(str); for (int i = strl…… 题解列表 2022年02月09日 0 点赞 0 评论 300 浏览 评分:0.0
1094: 字符串的输入输出处理 摘要:**解题思路:** 前面n个字符串原样输出,可能有空格,每次循环用gets()输入一串,用puts()输出一串 后面的字符串不带空格,选用scanf("%s")输入,遇到空格后,后面的内容在缓存区…… 题解列表 2022年02月09日 0 点赞 0 评论 309 浏览 评分:0.0
统计立方数(C++语言) 摘要:解题思路:将int范围内所有的立方数统计在一个数组里注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>#include<set…… 题解列表 2022年02月09日 0 点赞 0 评论 516 浏览 评分:0.0
Hifipsysta-2024-链表删除练习(C++代码) 摘要:```cpp #include using namespace std; struct node{ int data; node* next; }; node…… 题解列表 2022年02月09日 0 点赞 0 评论 351 浏览 评分:0.0