Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100530 李朋秦 04圆的面积 C++ Accepted 1 MS 268 KB 168 2024-12-08 12:11:24

Tests(10/10):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ double r; scanf("%lf",&r); printf("%.2lf",3.1415926*r*r); return 0; }