uq_58615886654


私信TA

用户名:uq_58615886654

访问量:114

签 名:

等  级
排  名 12446
经  验 974
参赛次数 0
文章发表 4
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include

using namespace std;

 


int main()

{

int n;

cin >> n;

for (int i = 2; i < n; i++)

{

bool s = true;

for (int j = 2; j <i; j++)

{

if (i % j == 0 ) {

s = false; break;

}

else s = true;

}

if (s) cout << i << endl;

}

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »