1
0
forked from newde/homework

镇乃天子

This commit is contained in:
2026-03-14 05:29:06 -04:00
parent f5c717b856
commit e268fd03a2

View File

@@ -0,0 +1,18 @@
#include<iostream>
using namespace std;
int main(){
int a[10]={1,200,315,4,5,6,71,8,9,10};
int *b=a;
for(int i=1;i<10;i++)
if(*b<a[i])
*b=a[i];
cout<<*b<<endl;
return 0;
}