Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131470 罗晟睿 04圆的面积 C++ Accepted 2 MS 272 KB 137 2025-09-26 20:01:57

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double r ,PI=3.1415926 ; cin>>r; printf("%.2lf",PI*r*r) ; return 0; }