返回列表 發帖
  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

返回列表