Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143271 周润泽 03圆的面积 C++ Accepted 0 MS 264 KB 258 2026-01-11 19:38:01

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main(){ double p=3.1415926; long long a=1,b=3,c=5,d=7,e=9; cout<<a*a*p<<endl; cout<<b*b*p<<endl; cout<<c*c*p<<endl; cout<<d*d*p<<endl; cout<<e*e*p<<endl; return 0; }