#include <iostream>
using namespace std;
int main() {
cout<<"enter a number pls:"<<endl;
double x;
cin>>x;
if (x<10){
cout<<"x est inferieur a 10"<<endl;
}
else if (x>10){
cout<<"x est superieur a 10"<<endl;
}
else{
cout<<"x egale 10"<<endl;
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: