题目 1022: [编程入门]筛选N以内的素数—常规求解方法 摘要:解题思路:两个for循环注意事项:下一次循环时,需要对部分变量重置参考代码:#include<stdio.h> int main(void) { int N; scanf("%d", …… 题解列表 2022年10月23日 0 点赞 0 评论 338 浏览 评分:0.0
公约公倍(c++) 摘要:解题思路:最大公约数好求,最小公倍数=乘积/最大公约数注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m,n,i,…… 题解列表 2022年10月23日 0 点赞 0 评论 457 浏览 评分:9.9
计负均正(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include <iomanip> …… 题解列表 2022年10月23日 0 点赞 0 评论 424 浏览 评分:7.3
同因查找(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i; for(i=10;i<=1000;i++) …… 题解列表 2022年10月23日 0 点赞 0 评论 510 浏览 评分:9.9
等差数列(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,i=1,j=2,sum=2; cin>>n; …… 题解列表 2022年10月23日 0 点赞 0 评论 526 浏览 评分:9.9
求偶数和(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,i,s=0,a[20]; cin>>n; …… 题解列表 2022年10月23日 0 点赞 0 评论 388 浏览 评分:9.9
分段函数(C++) 摘要:解题思路:用f()分段;参考代码:#include<iostream>using namespace std;#include <iomanip> …… 题解列表 2022年10月23日 0 点赞 0 评论 738 浏览 评分:9.9
温度转换(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ float c,F; c…… 题解列表 2022年10月23日 0 点赞 0 评论 645 浏览 评分:9.9
编写题解 2836: 数组逆序重放 摘要:解题思路:逆序:nums[::-1]注意事项:参考代码:n=int(input()) nums=list(map(int,input().split())) #打包为整型数组 for i in n…… 题解列表 2022年10月23日 0 点赞 0 评论 882 浏览 评分:9.3
编写题解 2835: 计算书费 摘要:解题思路:注意事项:参考代码:price=[28.9,32.7,45.6,78,35,86.2,27.8,43,56,65] #将价格储存进数组 nums=list(map(int,input().…… 题解列表 2022年10月23日 0 点赞 0 评论 999 浏览 评分:9.9