Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134921 胡思齐 01梯形的面积 C++ Wrong Answer 1 MS 264 KB 267 2025-11-01 17:23:16

Tests(0/1):


Code:

#include<iostream> using namespace std; int main() { float r1=1,r3=3,r5=5,r7=7,r9=9; cout<<3.1415926*r1*r1<<endl; cout<<3.1415926*r3*r3<<endl; cout<<3.1415926*r5*r5<<endl; cout<<3.1415926*r7*r7<<endl; cout<<3.1415926*r9*r9<<endl; }


Run Info:

------Input------
0
------Answer-----
120
------Your output-----
3.14159 28.2743 78.5398 153.938 254.469