活不明白


私信TA

用户名:hbmb

访问量:16063

签 名:

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

  自我简介:

解题思路:

注意事项:

参考代码:

#include <iostream>

using namespace std;


class Ss

{

public:

void ss(int n)

{

int j,x=0;

if (n<2)

{

cout<<"0"<<endl;

else

{

for (j=2;j<n;j++)

{

if (n%j==0)

{

x++;

break;

}

}

if (x==0)

{

cout<<"1"<<endl;

else

{

cout<<"0"<<endl;

}


}


}

};


int main()

{

int n;

Ss S;

cin>>n;

S.ss(n);


}


 

0.0分

1 人评分

  评论区

  • «
  • »