Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1710 邓小龙 13求7个数的最大值 C++ Compile Error 0 MS 0 KB 272 2023-11-04 17:50:02

Tests(0/0):


Code:

# include<iostream> # include<cmath> # include<cstdio.h> using namespace std; int main(){ int a,max=INT_MIN; for(int i=1;i<=7;i++){ cin>>a; if(a>max) max=a; } cout<<max*max<<" "<<max*max*max<<endl; return 0; }


Run Info:

Main.cc:3:20: fatal error: cstdio.h: No such file or directory
 # include
                    ^
compilation terminated.