1259: 送分题素数 摘要:解题思路:注意事项:参考代码:from math import * arr = [] for i in range(100, 201): for j in range(2, ceil(s…… 题解列表 2024年04月07日 0 点赞 0 评论 155 浏览 评分:0.0
直接查找(Python) 摘要:a=[]num=0for i in range(100,201): t = 0 for j in range(2,i): if i % j == 0: …… 题解列表 2021年04月16日 0 点赞 0 评论 194 浏览 评分:0.0
双重for循环进行求解 摘要:解题思路:定义一个空的字符串进行储存每次筛选出的素数,运用双重for循环进行筛选注意事项:参考代码:public class Main1 { public static void main(Str…… 题解列表 2022年01月10日 0 点赞 0 评论 295 浏览 评分:0.0
送分题素数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int ii(int i){ for(int j=2;j<i;j++…… 题解列表 2018年07月26日 0 点赞 0 评论 868 浏览 评分:0.0
送分题素数-题解(C++代码) 摘要:解题思路:注意事项:题目已经给出个数了,直接输出21就好,如果没有先一遍循环记录个数再输出21,在输出素素参考代码:/* */ #include <cstdio> #include <alg…… 题解列表 2020年08月26日 0 点赞 0 评论 369 浏览 评分:0.0
送分题素数 (C++代码) 摘要:解题思路: 来一波线性筛吧!注意事项:参考代码:#include<bits/stdc++.h> using namespace std; typedef long long ll; int a…… 题解列表 2018年12月22日 0 点赞 0 评论 425 浏览 评分:0.0
可能是全站最通俗易懂的代码了(c语言代码) 摘要:解题思路:遍历100-200之间所有元素,将满足的保存于数组中,最后输出即可。注意事项:数组的长度由计数变量t决定参考代码:#include#includeint main(){ int t …… 题解列表 2021年08月10日 0 点赞 0 评论 242 浏览 评分:0.0
送分题素数 C++ 摘要: #### 解题思路: #### 参考代码: ```cpp #include #include using namespace std; int prime[100]; bool …… 题解列表 2023年04月07日 0 点赞 0 评论 136 浏览 评分:0.0
1259: 送分题素数 摘要:解题思路:注意事项:参考代码:def get(n): s=0 for i in range(2,n//2+1): if n%i==0:   题解列表 2022年02月07日 0 点赞 0 评论 197 浏览 评分:0.0
送分题素数-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; bool pan_s(int n){ for(int i=2;i…… 题解列表 2020年04月18日 0 点赞 0 评论 414 浏览 评分:0.0