Respuestas
Respuesta dada por:
1
Respuesta:
[Back]
int number,x,j=5;
int max=0;
int main(){
do{
for(int i=0; i<j; i++)
{
cout<<"\nInput number :";
cin>>number;
if(number>max)
{
max = number;
x=0;
}
else if (number == max)
{
cout<<"\nDo not use the same number twice! Please Try again!";
i--;
x=1;
}
}
}while(x==1);
cout<<"The highest number is: "<<max;
getch();
clrscr();
return 0;
}
Explicación:
ya solo pásalo a java
sisireina:
Graciiias
Preguntas similares
hace 4 años
hace 4 años
hace 7 años
hace 7 años
hace 8 años