/* 輸入字元,顯示Ascii碼 */ #include #include //getch函式定義於 conio.h #include int main() { //1>宣告變數 char c; //2>for迴圈無條件進入,使用 getch函式 連續輸入字元,顯示Ascii碼,離開按[Esc] for(;;){ printf("連續輸入字元,顯示Ascii碼 , 離開按[Esc] : "); c = getch(); if(c == 27){ break; } printf("輸入字元 %c 的 Ascii碼 : %d \n", c , c ); } printf("\n\n感謝您的使用!....... \n\n"); //3>for迴圈 直接列出 Ascii碼 48-100 的字元 printf("\n *** 列出 Ascii碼 48-100 *** \n====================================\n"); int i; for(i=48 ; i<=100 ; i++){ printf("%c 的 Ascii碼 : %d \n", i , i ); } system("PAUSE"); return 0; }