就是想实现在键盘上输出一个数字 然后按回车键输出结果。可是我按回车键只是换了一行。没有输出结果。这是咋回事?要怎么更改?
#include <stdio.h>
int main()
{
printf("请输入半径\n");
int r;
printf("请输入整数\n");
scanf ("%d\n",&r);
double PI=3.14;
double s;
s=PI*r;
printf("圆的面积是:\n",s);
return 0;
}
qq_莫非
慕田峪3342546
Developer_Zuck