使用枚举法(while循环),直到符合条件为止,输出并且中止。
上代码!
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long x;//人数
while(1)
{
x++;
if(x%2==1&&x%3==1&&x%4==1&&x%5==1&&x%6==1&&x%7==0)
{
cout<<x;
return 0;//强制结束
}
}
return 0;
}
使用枚举法(while循环),直到符合条件为止,输出并且中止。
上代码!
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long x;//人数
while(1)
{
x++;
if(x%2==1&&x%3==1&&x%4==1&&x%5==1&&x%6==1&&x%7==0)
{
cout<<x;
return 0;//强制结束
}
}
return 0;
}