题解 | #牛牛的圆#
牛牛的圆
https://www.nowcoder.com/practice/75a202e826d048a39824ec694b5ce7e3
#include <iomanip> #include <iostream> using namespace std; #include "cmath" int main() { double S,r; cin >> r; S =3.14 * pow(r,2); cout << fixed << setprecision(2) << S <<endl; } // 64 位输出请用 printf("%lld")