哥德巴赫曾猜测 单循环 搞定 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; bool f(int x){ // 如果x小于等于1,则不是素数(…… 题解列表 2024年12月09日 0 点赞 0 评论 248 浏览 评分:0.0
太Tm强了吧啊深V合格好大个很大干哈 摘要:解题思路:这段代码是一个简单的C++程序,用于从标准输入读取三个整数,并按照指定格式输出。下面是对代码的逐行分析:#include<iostream> 和 #include <iomanip>: 这…… 题解列表 2024年12月09日 0 点赞 0 评论 485 浏览 评分:0.0
2879: 错误探测 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() { int i, j, n; //n为数组的阶数,i为行,j为列; int row…… 题解列表 2024年12月10日 1 点赞 0 评论 258 浏览 评分:0.0
药房管理(清晰明了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,i,n,a,sum=0,N=0; scanf("%d",&m); scanf("%…… 题解列表 2024年12月10日 0 点赞 0 评论 177 浏览 评分:0.0
与7无关的数(清晰明了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,t,sum=0; scanf("%d",&n); for(i=1;i<=n;i…… 题解列表 2024年12月10日 1 点赞 0 评论 322 浏览 评分:0.0
求最值索引,定指标max/j,在循环中不断替换 摘要:解题思路:求最值索引,定指标max/j,在循环中不断替换。输出记得索引+1。注意事项:参考代码:#include<iostream> using namespace std; int main()…… 题解列表 2024年12月10日 2 点赞 0 评论 260 浏览 评分:0.0
全部遍历后再输出-1 摘要:解题思路:注意cout出-1的位置,如果是在if下面,即意味着单次判断无x即直接-1,而实际上应该是全部遍历后再判断。注意事项:参考代码:#include<iostream> using names…… 题解列表 2024年12月10日 0 点赞 0 评论 164 浏览 评分:0.0
新手 与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,a,i,k=0; scanf("%d %d",&n,&m); for(i=0;…… 题解列表 2024年12月11日 0 点赞 0 评论 214 浏览 评分:0.0
新手 入口增长问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; double x; scanf("%lf %d",&x,&n); fo…… 题解列表 2024年12月11日 1 点赞 0 评论 230 浏览 评分:0.0
A+B for Input-Output Practice (I) 摘要:#include<stdio.h>int main(){ long long a,b; while(scanf("%lld %lld",&a,&b)!=EOF) { p…… 题解列表 2024年12月11日 0 点赞 0 评论 356 浏览 评分:0.0