#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.貼入程式時,程式碼可能會變掉,多了一些?號,請對照本網頁除錯.
沒有留言:
張貼留言