6 条题解

  • 1
    #include<iostream>
    using namespace std;
    int sum=0,n,f=1;
    int main() 
    {
        cin>>n;
        if(n==0)
        {
            cout<<"No";
            return 0;
        }
        if(n==1)
        {
            cout<<"No";
            return 0;
        }
        for(int i=2;i<n;i++)
            if(n%i==0)
                f=0;
        if(f!=0)
            cout<<"Yes";
        else
            cout<<"No";
    }
    
  • 0

    #include<iostream>
    using namespace std;
    int sum=0,n,f=1;
    int main()
    {
    cin>>n;
    if(n==0)
    {
    cout<<"No";
    return 0;
    }
    if(n==1)
    {
    cout<<"No";
    return 0;
    }
    for(int i=2;i<n;i++)
    if(n%i==0)
    f=0;
    if(f!=0)
    cout<<"Yes";
    else
    cout<<"No";
    }//54199

  • 0

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    int n,i;
    cin>>n;
    for(i=2;i<n;i++)
    {
    if(n%i==0)
    {
    break;
    }
    }
    if(i==n)
    {
    cout<<"Yes";
    }
    else
    {
    cout<<"No";
    }
    return 0;
    }//**very nice!!!**

  • 0
    @ 2022-08-13 21:34:37

    #include<bits/stdc++.h>
    using namespace std;
    int ss(int n)
    {
    for(int i=2;i<n;i++)
    {
    if(n%i == 0)
    {
    return -1;
    }
    }
    return 1;
    }
    int main(){
    int n;
    cin>>n;
    int s=ss(n);
    if(s==1)
    {
    cout<<"Yes";
    }
    if(s==-1)
    {
    cout<<"No";
    }
    return 0;
    }

  • 0
     #include<stdio.h>
    #include<iostream>
    using namespace std;
       int main()
       {
         int a,b = 0;
         scanf("%d",&a);
         for (int i = 2;i<a;i++)
          {
           if (a%i==0)
          {
          b = 1;
          break;
         }
         else
         continue;
         }
        if (b == 0)
        printf ("Yes\n");
        else
        if (b == 1)
        printf("No\n");
      return 0;
      }
    
    
  • 0

    #include <iostream>
    using namespace std;

    int main()
    {
    int n, i;
    bool isPrime = true;
    cin >> n;

    for(i = 2; i <= n / 2; ++i)
    {
    if(n % i == 0)
    {
    isPrime == false;
    break;
    }
    }
    if (isPrime)
    cout << "Yes";
    else
    cout << "No";

    return 0;
    }

  • 1

信息

ID
1632
难度
5
分类
(无)
标签
递交数
240
已通过
84
通过率
35%
上传者