#include <iostream>
using namespace std;
int main() {
// Write C++ code here
std::cout << "PROGRAMA DETERMINAR SI TRES NUMEROS ESTAN ORDENADO DE MENOR A MAYOR"<<endl;
int num1, num2, num3;
cout<<"ingrese el primer numero "<<endl;
cin>>num1;
cout<<"ingrese el segundo numero "<<endl;
cin>>num2;
cout<<"ingrese el tercer numero "<<endl;
cin>>num3;
if((num1<num2)&&(num2<num3))
{
cout<<"ESTAN ORDENADOS DE MENOR A MAYOR"<<endl;
}else
{
cout<<"NO ESTAN ORDENADOS DE MENOR A MAYOR"<<endl;
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: