2015年6月20日 星期六

輸入兩個數字,它幫你相加

C語言其實很好玩,只要您按照步驟,就可以輕鬆執行它

#include <stdio.h>

int main()

{

int a, b, c;

printf("Enter two numbers to add\n");

scanf("%d%d",&a,&b);

c = a + b;

printf("Sum of entered numbers = %d\n",c);

return 0;

}

結果:

Enter two numbers to add

2

3

Sum of entered numbers = 5

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

p.s.貼入程式時,程式碼可能會變掉,多了一些?號,請對照本網頁除錯.

首頁

沒有留言:

張貼留言