C++写的,有没有大佬懂得
查看原帖
C++写的,有没有大佬懂得
1649540
VistLip楼主2025/1/31 21:47

想不明白错在哪了

#include<iostream>
#include <cstdio>
#include <cmath>
#include<algorithm>
using namespace std;

int main()
{
	int k;
    int c,q,s;
    cin>>k;
    c=q=1;
    for(int i=1;i<=k;i++){
        s=s+c;
        q--;
        if(q==0){
            c++;
            q=c;
        }
    }
    cout<<s;
    return 0;
}
2025/1/31 21:47
加载中...