2 条题解

  • 2
    @ 2023-11-29 17:37:23
    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";
    }
    
  • 2
    @ 2023-7-28 17:26:08

    #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; }

    • 1

    信息

    ID
    345
    时间
    1000ms
    内存
    256MiB
    难度
    7
    标签
    (无)
    递交数
    390
    已通过
    101
    上传者