自学内容网 自学内容网

东方博宜 1265. 爱因斯坦的数学题

东方博宜 1265. 爱因斯坦的数学题

在这里插入图片描述

#include<iostream>
using namespace std;
int main()
{
bool m = true ;
int n = 1 ;
while(m)
{
if(n%2==1 && n%3==2 && n%5==4 && n%6==5 && n%7==0 )
break ;
n++ ;
}
cout << n ;
return 0 ;
 } 

原文地址:https://blog.csdn.net/weixin_43423646/article/details/136352784

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!