小新手 不知道哪里错了 快来看
#include<stdio.h>void main()
{
double r,l,s,PI;
printf("请输入半径值");
scanf("d%",&r);
PI=3.14159;
l=2*PI*r,s=PI*r*r;
printf("圆周长l=6.2d% 圆面积s=6.2d%\n",l,s);
printf("(取小数点后的两位数)");
}
不知道哪里错了
下面是错误原因
error C2059: syntax error : 'constant'
error C2106: '=' : left operand must be l-value