Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
157501 钱炜懿 03圆的面积 C++ Accepted 1 MS 264 KB 268 2026-07-24 15:50:43

Tests(1/1):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int a=1,b=3,c=5,d=7,e=9; double f=3.1415926; cout<<f*a*a<<endl; cout<<f*b*b<<endl; cout<<f*c*c<<endl; cout<<f*d*d<<endl; cout<<f*e*e<<endl; return 0; }