返回列表 發帖

本帖最後由 若晴 於 2023-7-19 09:23 編輯
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string n;
  4. int main()
  5. {
  6.     cin>>n;
  7.     for(int i=0;i<n.length();i++)
  8.     {
  9.         if(n[i]>='a' && n[i]<='z')
  10.             cout<<char(n[i]-'a'+'A');
  11.         else if(n[i]>='A' && n[i]<='Z')
  12.             cout<<char(n[i]-'A'+'a');
  13.     }
  14.     cout<<endl;
  15.     return 0;
  16. }
複製代碼
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int n;
  4. int main()
  5. {
  6.         cin>>n;
  7.         for(int i=2;i<=n;i++)
  8.         {
  9.                 for(int j=2;j<i;j++)
  10.                 {
  11.                         if(i%j==0)
  12.                                 break;
  13.                         else if(j==i-1)
  14.                                 cout<<i<<" ";
  15.                 }
  16.         }
  17.         cout<<endl;
  18.         return 0;
  19. }
複製代碼
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int n;
  4. int main()
  5. {
  6.         cin>>n;
  7.         for(int i=1;i<=5;i++)
  8.                 {
  9.                         for(int j=1;j<=5;j++)
  10.                         {
  11.                                 if(n==0)
  12.                                         cout<<i<<"*"<<j<<"="<<i*j<<"\t";
  13.                                 else if(n==1)
  14.                                         cout<<j<<"*"<<i<<"="<<i*j<<"\t";
  15.                                 else
  16.                                 {
  17.                                         cout<<"error";
  18.                                         return 0;
  19.                                 }
  20.                         }
  21.                         cout<<endl;
  22.                 }
  23.        
  24.         return 0;
  25. }
複製代碼

TOP

返回列表