题解 | #单组_spj判断浮点误差#
单组_spj判断浮点误差
https://www.nowcoder.com/practice/6652094c6a0e4381911b541ed664d8b7
#include <cmath> #include <iostream> using namespace std; int main() { int a, b; while (cin >> a) { // 注意 while 处理多个 case double pi=3.1415926; cout<<pi*pow(a, 2); } } // 64 位输出请用 printf("%lld")