2015年6月17日 星期三

輸入數字

#include <stdio.h>

int main()

{

int a;

printf("Enter an integer\n");

scanf("%d", &a);

printf("Integer that you have entered is %d\n", a);

return 0;

}

結果:

Input an integer

請你輸入一個數字或英文字,它將回答你輸入了什麼,如果輸入了英文字,它就回答你代表該英文字的萬國碼.

p.s.使用Dev C++者,要讓終端機停留讓你看結果,請在return 0 前一行貼入system("pause");即可.

首頁

沒有留言:

張貼留言