2 条题解
- 1
信息
- ID
- 345
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 7
- 标签
- (无)
- 递交数
- 390
- 已通过
- 101
- 上传者
using namespace std;
int main()
{
bool a=true;
int n;
cin>>n;
for(int i=2;i<n;i++)
{
if(n%i==0) a=false;
}
if(n==1||n==0) cout<<"NO"<<endl<<"NO";
else
if(a==true) cout<<"YES"<<endl<<"NO";
else cout<<"NO"<<endl<<"YES";
}
原来1不是合数xswl😕 😕 😕
1既不是素数,也不是合数!!!
🤢
#include #include using namespace std; int main() { int a,b; cin>>a; if(a!=1){ b=a-1; while(a%b!=0) b--; if(a%b==0&&b>1) { cout<<"NO"<<endl; cout<<"YES"<<endl; } else { cout<<"YES"<<endl; cout<<"NO"<<endl; } } else { cout<<"NO"<<endl; cout<<"NO"<<endl; } return 0; }