ФІО = Горбаченко В.А.
Запитання:/*
Вивести максимальну цифру в введеному числі
*/
#include <iostream>
#include <cstdlib>
//#include <conio.h>
#define N 200
using namespace std;
int func(int x){
int max=x%10;
while (x!=0){
if (x%10>max) max=x%10;
x/=10;
}
return max;
}
int main(){
int x;
cout<<" Enter X : ";
cin>>x;
cout<<" The max number is"<<func(x)<<endl;
system("PAUSE");
}
====================================
|