Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90659 黄思翔 03圆的面积 C++ Accepted 0 MS 260 KB 217 2024-09-16 11:48:29

Tests(1/1):


Code:

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