Run ID:4340

提交时间:2024-08-16 15:23:50

#include<iostream> using namespace std; int main(){ int m=INT_MIN; int t; for(int i=1;i<=7;i++){ cin>>t; if(t>m) m=t; } cout<<m<<endl<<m*m<<endl<<m*m*m<<endl; }