返回列表 發帖

C++第三題:產生輸入字元相對應之 ASCII 碼。

本帖最後由 stephen 於 2010-2-20 11:02 編輯

C++第三題:產生輸入字元相對應之 ASCII 碼。

程式說明:
1. 資料型態的轉換方式 : (欲轉換的型態)欲轉換的變數。
ex : (int)user_char;    // 轉換前為 char(字元)型態,轉換後為 int(整數)型態。
  1. /*產生輸入字元相對應之 ASCII 碼。 */
  2. #include <iostream>  
  3. using namespace std;  
  4. int main(void){
  5.    
  6.     char char_user;  /* char 為字元的型態 */
  7.     cout << "Please enter an Character : " << endl;
  8.     cin >> char_user;
  9.     cout << "the ascii of " << char_user << " is " << (int)char_user << endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.     char char_user;//字元          int 整數
  6.     cout <<"Please enter an Character :"<<endl;
  7.     cin >>char_user;
  8.     cout << (int)char_user <<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼
分數掛蛋的心情像空白的紙,再次期望著奇蹟的到來。

TOP

  1. /* 3 .產生輸入字元的相對應之ASCII碼 */
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;

  5. int main()
  6. {
  7.    char user;
  8.    cout << " Please cnter an Charter :" << endl;
  9.    cin >> user;
  10.    cout << (int)user << endl;  
  11.    system("Pause");
  12.    return 0;
  13. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.    
  6.     char user;
  7.     cout << "請輸入英文字母" << endl;
  8.     cin >> user;
  9.     cout << (int)user << endl;
  10.    
  11.     system ("pause");
  12.     return 0;
  13. }
複製代碼

TOP

  1. /*3.產生輸入字元相對應之 ASCII 碼。 */
  2. #include <iostream>
  3. using namespace std;
  4. int main(void){
  5.    
  6.    char x ;
  7.    cin >> x;
  8.    cout << (int)x;
  9.    
  10.    /**int y ;
  11.    cin >> y;
  12.    cout << (char)y;**/
  13.    
  14.   
  15.       
  16.     system("pause");
  17.     return 0;
  18. }   
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){

  5.     char s;
  6.     cin >> s;
  7.     cout << (int)s ;
  8.         
  9.     system("pause");

  10.     return 0;

  11. }
複製代碼
明輝

TOP

返回列表