返回列表 發帖

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. bool compute(int a)
  4. {
  5.     for(int i=2 ; i<=sqrt(a) ; i++)
  6.     {
  7.         if(a%i == 0)
  8.         {
  9.             return 0;
  10.         }
  11.     }
  12.     return 1;
  13. }
  14. int main()
  15. {
  16.     int n;
  17.     cin >> n;
  18.     if(compute(n))
  19.         cout << n << " is a prime number";
  20.     else
  21.         cout << n << " is not a prime number";
  22.    
  23.     return 0;
  24. }
複製代碼
Vincent

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int n , sum[7]={0};
  4. int main()
  5. {
  6.     for(int i=1 ; i<=10 ; i++)
  7.     {
  8.         cin >> n;
  9.         if(n>=1 && n<=6)
  10.             sum[n]++;
  11.         else
  12.             sum[0]++;
  13.     }

  14.     for(int i=1 ; i<=6 ; i++)
  15.         cout << "number" << i << ":" << sum[i] << endl;
  16.     cout << "error:" << sum[0] << endl;
  17.     return 0;
  18. }
複製代碼
Vincent

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. bool comput(int a)
  4. {
  5.     for(int i=2;i<=sqrt(a);i++)
  6.     {
  7.         if(a%i==0)
  8.         {
  9.             return 0;
  10.         }
  11.     }
  12.     return 1;
  13. }

  14. int main ()
  15. {
  16.     int n;
  17.     cin >> n;
  18.     if(comput(n))
  19.         cout<<n<<" is a prime number\n";
  20.     else
  21.         cout<<n<<" is not a prime number\n";
  22.     return 0;

  23. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main ()
  4. {
  5.     int n,num[7]={0};
  6.     for(int i=0;i<10;i++)
  7.     {
  8.         cin >>n;
  9.         if(n>6 ||n<1)
  10.             num[0]++;
  11.         else
  12.             num[n]++;

  13.     }
  14.     for(int i=1;i<7;i++)
  15.     {
  16.         printf("number%d:%d\n",i,num[i]);
  17.     }
  18.    cout<<"error:"<<num[0]<<endl;

  19.     return 0;

  20. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int compute(int n[2])
  4. {
  5.     for(int i=0;i<n[1];i++)
  6.     {
  7.         for(int j=0;j<n[0];j++)
  8.         {
  9.             cout<<"*";

  10.         }
  11.         cout<<endl;

  12.     }
  13.     return n[0]*n[1];


  14. }
  15. int main()
  16. {
  17.     int arr[2];
  18.     cin>> arr[0] >>arr[1];
  19.     cout<<compute(arr)<<endl;

  20.     return 0;
  21. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main ()
  4. {
  5.     int a,b,sum=0;
  6.     cin >> a >> b;
  7.     for(int i=a;i<=b;i++)
  8.     {
  9.         if(i%2==1)
  10.         {
  11.             sum+=i;
  12.         }
  13.     }
  14.     cout<<sum<<endl;
  15.     return 0;
  16. }
複製代碼

TOP

返回列表