#include<stdio.h>
main()
{
int r,s;
scanf("%d",&r);
s=3.14*r*r;
printf("s=%f",s);
}
把s的变量类型改为double就行了