圆的面积
开始定义数据类型为float,结果小数点后有几位数出差,float损失了精度
#include <iostream> #include <cstdio> using namespace std; int main () { double P=3.14159,R; cin>>R; printf("A=%.4lf",P*R*R); return 0; }