返回列表 發帖

字串的處理 (八) - ASCII碼與字元相互查詢

本帖最後由 tonyh 於 2014-1-4 15:25 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int option, ascii;
  7.     char letter;
  8.     re:
  9.     cout<<"1-輸入ASCII碼查字元(1~127)  2-輸入字元查ASCII碼(任意)  3-結束"<<endl;
  10.     cout<<"請選擇: ";
  11.     cin>>option;
  12.     switch(option)
  13.     {
  14.         case 1:
  15.              cout<<"輸入ASCII碼: ";
  16.              cin>>ascii;
  17.              cout<<"ASCII: "<<ascii<<"所對應的字元為"<<char(ascii);
  18.              break;
  19.         case 2:
  20.              cout<<"輸入字元: ";
  21.              cin>>letter;
  22.              cout<<"字元: "<<letter<<"所對應的ASCII為"<<int(letter);
  23.              break;
  24.         case 3:
  25.              goto end;
  26.              break;
  27.         default:               
  28.              cout<<"輸入錯誤!"<<endl;     
  29.     }
  30.     cout<<endl<<endl;
  31.     goto re;
  32.     end:
  33.     system("pause");
  34.     return 0;   
  35. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int option, ascii;
  7.     char letter;
  8.     re:
  9.     cout<<"1-輸入ASCII碼查字元(1~127) 2-輸入字元查ASCII(任意) 3-結束"<<endl;
  10.     cout<<"請選擇: ";
  11.     cin>>option;
  12.     switch(option)
  13.     {
  14.         case 1:
  15.              cout<<"輸入ASCII碼: ";
  16.              cin>>ascii;
  17.              cout<<"ASCII"<<ascii<<"所對應的字元為"<<char(ascii);
  18.              break;
  19.         case 2:
  20.              cout<<"輸入字元: ";
  21.              cin>>letter;
  22.              cout<<"字元"<<letter<<"所對應的ASCII為"<<int(letter);
  23.              break;
  24.         case 3:   
  25.              goto end;
  26.              break;
  27.         default:
  28.              cout<<"輸入錯誤!!!"<<endl;         
  29.     }
  30.     cout<<endl<<endl;
  31.     end:
  32.     system("pause");
  33.     return 0;   
  34. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int option, ascii;
  7.     char letter;
  8.     re:
  9.     cout<<"1-輸入ASCII碼查字元(1~127) 2-輸入字元查ASCII(任意) 3-結束"<<endl;
  10.     cout<<"請選擇: ";
  11.     cin>>option;
  12.     switch(option)
  13.     {
  14.         case 1:
  15.              cout<<"輸入ASCII碼: ";
  16.              cin>>ascii;
  17.              cout<<"ASCII"<<ascii<<"所對應的字元為"<<char(ascii);
  18.              break;
  19.         case 2:
  20.              cout<<"輸入字元: ";
  21.              cin>>letter;
  22.              cout<<"字元"<<letter<<"所對應的ASCII為"<<int(letter);
  23.              break;
  24.         case 3:   
  25.              goto end;
  26.              break;
  27.         default:
  28.              cout<<"輸入錯誤!!!"<<endl;         
  29.     }
  30.     cout<<endl<<endl;
  31.     end:
  32.     system("pause");
  33.     return 0;   
  34. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start,end,a,b;
  7.     char a;
  8.     re:
  9.     cout<<"1ascii轉字母 2字母轉ascii 3結束"<<endl;;
  10.     cin>>start;
  11.     switch(start)
  12.     {
  13.         case 1:
  14.              cout<<"請輸入ASCII碼: ";
  15.              cin>>end;
  16.              cout<<"字元為: "<<char(end);
  17.              break;
  18.         case 2:
  19.              cout<<"請輸入字元: ";
  20.              cin>>a;
  21.              cout<<"ASCII為: "<<int(a);
  22.              break;
  23.         case 3:
  24.              goto end;
  25.              break;  
  26.         default:
  27.              cout<<"輸入錯誤"<<endl;                              
  28.     }
  29.     cout<<endl;
  30.     goto re:
  31.     end:
  32.         
  33.     system("pause");   
  34.     return 0;
  35. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int option, ascii;
  7.     char letter;
  8.     re:
  9.     cout<<"1-輸入ASCII碼查字元(1~127)  2-輸入字元查ASCII碼(任意)  3-結束"<<endl;
  10.     cout<<"請選擇: ";
  11.     cin>>option;
  12.     switch(option)
  13.     {
  14.         case 1:
  15.              cout<<"輸入ASCII碼: ";
  16.              cin>>ascii;
  17.              cout<<"ASCII: "<<ascii<<"所對應的字元為"<<char(ascii);
  18.              break;
  19.         case 2:
  20.              cout<<"輸入字元: ";
  21.              cin>>letter;
  22.              cout<<"字元: "<<letter<<"所對應的ASCII為"<<int(letter);
  23.              break;
  24.         case 3:
  25.              goto end;
  26.              break;
  27.         default:               
  28.              cout<<"輸入錯誤!"<<endl;     
  29.     }
  30.     cout<<endl<<endl;
  31.     goto re;
  32.     end:
  33.     system("pause");
  34.     return 0;   
  35. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start,end,a,b;
  7.     char a;
  8.     re:
  9.     cout<<"1ascii轉字母 2字母轉ascii 3結束"<<endl;;
  10.     cin>>start;
  11.     switch(start)
  12.     {
  13.         case 1:
  14.              cout<<"請輸入ASCII碼: ";
  15.              cin>>end;
  16.              cout<<"字元為: "<<char(end);
  17.              break;
  18.         case 2:
  19.              cout<<"請輸入字元: ";
  20.              cin>>a;
  21.              cout<<"ASCII為: "<<int(a);
  22.              break;
  23.         case 3:
  24.              goto end;
  25.              break;  
  26.         default:
  27.              cout<<"輸入錯誤"<<endl;                              
  28.     }
  29.     cout<<endl;
  30.     goto re:
  31.     end:
  32.         
  33.     system("pause");   
  34.     return 0;
  35. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int ascii, option;
  8.     char letter;
  9.     cout<<"(1)ascii轉字元 (2)字元轉ascii (3)結束"<<endl;
  10.     cout<<"請選擇: ";
  11.     cin>>option;
  12.     switch(option)
  13.     {
  14.          case 1:
  15.               cout<<"輸入ascii: ";
  16.               cin>>ascii;
  17.               cout<<"ascii碼"<<ascii<<"所對應的字元為: "<<char(ascii)<<endl;
  18.               break;
  19.          case 2:
  20.               cout<<"輸入字元: ";
  21.               cin>>letter;
  22.               cout<<"字元"<<letter<<"所對應的ascii碼為: "<<int(letter)<<endl;
  23.               break;
  24.          case 3:
  25.               goto end;
  26.               break;
  27.          default:
  28.               cout<<"輸入錯誤!"<<endl;         
  29.     }
  30.     goto re;
  31.     end:
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼

TOP

返回列表