检查一个数是否为质数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; for(int …… 题解列表 2023年07月15日 0 点赞 0 评论 216 浏览 评分:0.0
筛选N以内的素数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; for(i…… 题解列表 2023年07月15日 0 点赞 0 评论 339 浏览 评分:0.0
第n小的质数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,sum=0; cin>>n; …… 题解列表 2023年07月15日 0 点赞 0 评论 240 浏览 评分:0.0
-质因数分解 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a=0,maxx=0; cin>>…… 题解列表 2023年07月15日 0 点赞 0 评论 260 浏览 评分:0.0
大等于n的最小完全平方数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; for(i…… 题解列表 2023年07月15日 0 点赞 0 评论 196 浏览 评分:0.0
2020: 快速排序练习-关键值取数组第一个元素L 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; void qsort(int* arr,int …… 题解列表 2023年07月15日 0 点赞 0 评论 224 浏览 评分:0.0
一元二次方程 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] ar…… 题解列表 2023年07月15日 0 点赞 0 评论 261 浏览 评分:0.0
题目1113 保留字母 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class 测试 { public static void main(String[] args) …… 题解列表 2023年07月15日 0 点赞 0 评论 281 浏览 评分:0.0
水仙花数问题1 摘要:解题思路:注意事项:参考代码: public class Main { public static void main(String[] args) { Scanner sc = new…… 题解列表 2023年07月15日 1 点赞 0 评论 324 浏览 评分:0.0
题目 1487: 蓝桥杯算法提高VIP-不同单词个数统计题解 摘要:1.解题思路虽然输入方法不一样,但是都有一个共同点:m为单词的个数,后头的算法一样,先把重复的单词设为空,再数有多少个不是空格的元素。2.参考代码:2.1.用gets#include<iostream…… 题解列表 2023年07月16日 0 点赞 0 评论 423 浏览 评分:0.0