返回列表 發帖

[作業] 字串的處理 - 英文大小寫轉換 (一)

本帖最後由 tonyh 於 2012-4-28 16:08 編輯

讓使用者自行決定要將字串轉換為大寫還是小寫.
(使用if...else敘述)

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     char string[50];               
  8.     cout<<"請輸入要轉換的英文字串(50字內): ";
  9.     cin.getline(string,50);      
  10.     cout<<"請問是要轉換成大寫還是小寫??1.大寫  2.小寫"<<endl;
  11.     cin>>x;
  12.     if(x==1)
  13.     {
  14.             strupr(string);            
  15.             cout<<"轉換成大寫: "<<string<<endl;
  16.             goto end;
  17.     }else
  18.     {
  19.             goto small;
  20.     }
  21.     small:
  22.     strlwr(string);               
  23.     cout<<"轉換成小寫: "<<string<<endl;
  24.     end:
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

本帖最後由 t2364705 於 2012-4-28 16:09 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int y;
  7.     char string[100];               
  8.     cout<<"請輸入要轉換的英文字串(100字內): ";
  9.     cin.getline(string,100);      
  10.     cout<<"請問是要轉換成大寫還是小寫? 1.大寫  2.小寫 : ";
  11.     cin>>y;
  12.      
  13.     if(y==1)
  14.     {
  15.             strupr(string);            
  16.             cout<<"轉換成大寫: "<<string;
  17.     }else if(y==2)
  18.     {
  19.             strupr(string);
  20.             cout<<"轉換成小寫: "<<string;
  21.     }else
  22.     {
  23.             cout<<"輸入錯誤!";
  24.     }     
  25.     cout<<endl;
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     char string[50];               
  8.     cout<<"請輸入要轉換的英文字串(50字內): ";
  9.     cin.getline(string,50);      
  10.     cout<<"請問是要轉換成大寫還是小寫呢?   1.大寫  2.小寫"<<endl;
  11.     cin>>a;
  12.     if(a==1)
  13.     {
  14.             strupr(string);            
  15.             cout<<"轉換成大寫是: "<<string<<endl;
  16.             goto end;
  17.     }else
  18.     {
  19.             goto small;
  20.     }
  21.     small:
  22.     strlwr(string);               
  23.     cout<<"轉換成小寫是: "<<string<<endl;
  24.     end:
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a;
  7. char string[50];               
  8. cout<<"請輸入要轉換的英文字串(50字內): ";
  9. cin.getline(string,50);      
  10. cout<<"請問是要轉換成大寫還是小寫呢?   1.大寫  2.小寫"<<endl;
  11. cin>>a;
  12. if(a==1)
  13. {
  14. strupr(string);            
  15. cout<<"轉換成大寫是: "<<string<<endl;
  16. goto end;
  17. }else
  18. {
  19. goto small;
  20. }
  21. small:
  22. strlwr(string);               
  23. cout<<"轉換成小寫是: "<<string<<endl;
  24.    end:
  25. system("pause");
  26. return 0;
  27. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int z;
  7.     char string[50];               
  8.     cout<<"請輸入要轉換的英文字串(50字內): ";
  9.     cin.getline(string,50);      
  10.     cout<<"請問是要轉換成大寫還是小寫   1.大寫    2.小寫"<<endl;
  11.     cin>>z;
  12.     if(z==1)
  13.     {
  14.             strupr(string);            
  15.             cout<<"轉換成大寫: "<<string<<endl;
  16.             goto end;
  17.     }else
  18.     {
  19.             goto small;
  20.     }
  21.     small:
  22.     strlwr(string);               
  23.     cout<<"轉換成小寫: "<<string<<endl;
  24.     end:
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

返回列表