用editplus编程的问题
我下了个ediplus+gcc来用,写了下面的一段程序# include "stdio.h"
int main()
{
int price,shares;
float num,denom,value;
printf("enter number of shares: ");
scanf ("%d",&shares);
value=(price+num/denom)*shares;
printf("value of holding: $%.2f\n", value);
getchar();
return 0;
}
运行之后EDITPLUS编译出了一个.EXE文件,我运行这个文件输入数据黑框就一闪而过了,不能看到结果。
这是怎么回事,要如何改这段程序呢?