%2f应该是保留两位小数的意思,但最后小数位数并没有被保留
#include<stdio.h>
main() {
float pi = 3.14;
float r;
float s;
printf("radius:");
scanf_s("%f", &r);
s = pi * r * r;
printf("%2f", s);
}
radius:1
3.140000
C:\Users\jyz_1\source\repos\Project5\Debug\Project5.exe (进程 8904)已退出,代码为 0。