编写题解 3016: 第几项 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int i=0,sum=0,m; cin>>m…… 题解列表 2024年02月25日 0 点赞 0 评论 66 浏览 评分:0.0
编写题解 3016: 第几项 摘要:解题思路:利用循环,满足条件 break,跳出循环注意事项:m,n为正整数,当m=1时,range(1,1)不起作用参考代码:m=int(input())s=0#加和for n in range(1,…… 题解列表 2024年03月02日 0 点赞 0 评论 84 浏览 评分:0.0
编写题解 3016: 第几项 摘要:#include<bits/stdc++.h>using namespace std;int main(){int m,sum=0,i=0;cin>>m;while(sum<m){i++;sum+=i…… 题解列表 2024年05月13日 0 点赞 0 评论 183 浏览 评分:0.0
第几项 最简单的方法 摘要:解题思路:以m>s来判断循环的始终,每轮增加n,然后累加到s即可注意事项:参考代码:int m;int n = 0,s = 0;scanf("%d",&m);while (m>s){ n++; …… 题解列表 2024年08月19日 0 点赞 0 评论 89 浏览 评分:9.9
题解 3016: 第几项 摘要:解题思路:注意事项:for和while都可以!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码:#include …… 题解列表 2025年01月10日 0 点赞 0 评论 31 浏览 评分:0.0