C程序无法按预期的方式工作

时间:2020-08-17 00:08:47

标签: c eclipse

我正在使用Eclipse IDE在C中构建一个基本的计算器。 当代码编译时,输出屏幕上将不显示任何内容。 在输出部分输入任意两个数字后,它将两个数字和程序printf的文本相加。

 #include<stdio.h>

int main() {
int a , b , sum;

printf("Enter first number:");
scanf("%d",&a);

printf("Enter second number:");
scanf("%d",&b);

sum = a+b;

printf("%d",sum);

    return 0;
}

empty output. the instructions taht ask the user to enter the number is not showing

the result after enter two number

0 个答案:

没有答案