煎蛋题解(无注释)
2024-08-31 23:05:01
发布于:广东
2阅读
0回复
0点赞
自行观看(实在太晚了所以不写题解,大家原谅一下)
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,m,x = 0;
cin >> n >> m;
while(n >= m){
if(n >= m){
x++;
n -= m;
m += 1;
}else{
break;
}
}
cout << x;
return 0;
}
这里空空如也
有帮助,赞一个