Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95065 谢佳辰 03圆的面积 C++ Wrong Answer 1 MS 264 KB 237 2024-10-26 17:33:49

Tests(0/1):


Code:

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


Run Info:

------Input------
0
------Answer-----
3.14159 28.2743 78.5398 153.938 254.469
------Your output-----
3.14169 28.2752 78.5423 153.943 254.477