| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 106921 | 于铁林 | 04球的体积 | C++ | Runtime Error | 0 MS | 264 KB | 191 | 2025-01-17 09:46:07 |
#include<iostream> #include<cstdio> using namespace std; int main(){ float r,pi=3.1415926,v; scanf("%lf",&r); v=4*pi*r*r*r/3.0; printf("%.4lf",v); return 0; }
*** stack smashing detected ***: ./Main terminated