Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91732 潘梓骞 04圆的面积 C++ Accepted 1 MS 264 KB 154 2024-09-22 14:14:22

Tests(10/10):


Code:

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