Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138807 gqj 03圆的面积 C++ Accepted 0 MS 264 KB 179 2025-11-29 22:03:42

Tests(1/1):


Code:

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