:::: CODE ::::
- #include<iostream>
- using namespace std;
- int main()
- {
- int Num[10],max=0;
- for (int a=0; a<10; a++) {
- cout << "Insert Num#"<<a+1<<" : ";
- cin >> Num[a];
- }
- for(int d=0; d<10; d++)
- {
- if (Num[d]>max)
- max=Num[d];
- }
- cout<<endl <<"Max Is "<< max <<endl;
- return(0);
- }