الجملة الشرطية

الجملة الشرطية


#include <iostream>

using namespace std;

int main()

{

int x=5

if (x<5)

{

cout<<"hello"<<endl;

}

else if ( x==5)

{

cout<<"welcome"<<endl;

}

else{

cout<<"nothing"<<endl;

}

}