標題:
C++第三題:產生輸入字元相對應之 ASCII 碼。
[打印本頁]
作者:
stephen
時間:
2010-2-20 10:26
標題:
C++第三題:產生輸入字元相對應之 ASCII 碼。
本帖最後由 stephen 於 2010-2-20 11:02 編輯
C++第三題:產生輸入字元相對應之 ASCII 碼。
程式說明:
1. 資料型態的轉換方式 : (欲轉換的型態)欲轉換的變數。
ex : (int)user_char; // 轉換前為 char(字元)型態,轉換後為 int(整數)型態。
/*產生輸入字元相對應之 ASCII 碼。 */
#include <iostream>
using namespace std;
int main(void){
char char_user; /* char 為字元的型態 */
cout << "Please enter an Character : " << endl;
cin >> char_user;
cout << "the ascii of " << char_user << " is " << (int)char_user << endl;
system("pause");
return 0;
}
複製代碼
作者:
p17johnny
時間:
2010-2-20 10:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
char char_user;//字元 int 整數
cout <<"Please enter an Character :"<<endl;
cin >>char_user;
cout << (int)char_user <<endl;
system("pause");
return 0;
}
複製代碼
作者:
yachen392
時間:
2010-2-20 10:33
/* 3 .產生輸入字元的相對應之ASCII碼 */
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char user;
cout << " Please cnter an Charter :" << endl;
cin >> user;
cout << (int)user << endl;
system("Pause");
return 0;
}
複製代碼
作者:
chuangjoy
時間:
2010-2-20 10:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
char user;
cout << "請輸入英文字母" << endl;
cin >> user;
cout << (int)user << endl;
system ("pause");
return 0;
}
複製代碼
作者:
tony
時間:
2010-4-16 19:36
/*3.產生輸入字元相對應之 ASCII 碼。 */
#include <iostream>
using namespace std;
int main(void){
char x ;
cin >> x;
cout << (int)x;
/**int y ;
cin >> y;
cout << (char)y;**/
system("pause");
return 0;
}
複製代碼
作者:
abc3806198
時間:
2010-4-16 19:38
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
char s;
cin >> s;
cout << (int)s ;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2