返回列表 發帖

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

  3. int main()
  4. {
  5.     int a, b;
  6.     char c;
  7.     while(cin>>a>>b>>c){
  8.         if(c == '+'){
  9.             cout<<a<<"+"<<b<<"="<<a+b;
  10.         }else if(c == '-'){
  11.             cout<<a<<"-"<<b<<"="<<a-b;
  12.         }else if(c == '*'){
  13.             cout<<a<<"*"<<b<<"="<<a*b;
  14.         }else{
  15.             cout<<"error";
  16.         }
  17.     }
  18.     return 0;
  19. }
複製代碼

TOP

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

  3. int main() {
  4.     int s[6] = {0};
  5.     int errorCount = 0;
  6.     for (int i = 0; i < 10; i++) {
  7.         int n;
  8.         cin >> n;
  9.         if (n>=1 && n<7) {
  10.             s[n-1]++;
  11.         } else {
  12.             errorCount++;
  13.         }
  14.     }
  15.     for (int i=0;i<6;i++) {
  16.         cout<<"number"<<i + 1<<":"<<s[i]<<endl;
  17.     }
  18.     cout<<"error:"<<errorCount<<endl;

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

TOP

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

  3. int main()
  4. {
  5.     int num, sum;
  6.     cin>>num;
  7.     for(int i=2;i<num; i++){
  8.         if(num%i==0){
  9.             cout<<num<<"is not a prime number";
  10.             return 0;
  11.         }
  12.     }
  13.     cout<<num<<"is a prime number";
  14.     return 0;
  15. }
複製代碼

TOP

本帖最後由 何若恩 於 2024-12-27 20:05 編輯
  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     int num;
  6.     cin>>num;
  7.     for(int i=2;i<num; i++){
  8.         if(num%i==0){
  9.             break;
  10.         }else{
  11.             cout<<i<<" ";
  12.         }
  13.     }
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {   
  5.     int a;
  6.     cin>>a;
  7.     if(a == 0){
  8.             for(int i=1; i<=5; i++){
  9.                 for(int j=1; j<=5; j++){
  10.                     cout<<i<<"*"<<j<<"="<<i*j<<"\t";
  11.                 }
  12.                 cout<<endl;
  13.             }
  14.         }else if(a == 1){
  15.              for(int i=1; i<=5; i++){
  16.                 for(int j=1; j<=5; j++){
  17.                     cout<<j<<"*"<<i<<"="<<i*j<<"\t";
  18.                 }
  19.                 cout<<endl;
  20.             }
  21.         }else{
  22.             cout<<"error";
  23.         }
  24.     return 0;
  25. }
複製代碼

TOP

返回列表