Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93629 翁思宸 04圆的面积 C++ Accepted 1 MS 268 KB 180 2024-10-18 18:31:03

Tests(10/10):


Code:

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