#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int x,y,j,t;
cin >> x >> y >> j >> t;
while (0 <= j <= x)
if(j * 2 + t * 4 == y)
cout << x << y;
else
j = j +1;
return 0;
}
为什么新人发帖不能看看发帖指南再发啊
2 个赞
把第 13 行的else
去掉。
如果不去掉的话j
的值就不会改变,导致第 11 行的if
永远成立。这样就会死循环。
谢谢
给个解决方案,谢谢。
给了
1 个赞