2 دورة سي بلس بلس
#include <iostream> using namespace std; int main() { // + - * / % // \n new line , \t tab ,\a alert , \\ \ ,\" " ,\' ' int age; cin>>age; // > < >= <= != && || if( age > 20 && age <30) { if(age != 25){ cout<<"okay"<<endl; } else { cout<<"done"; } } else if( age ==19 || age<19 ) // <= { cout<<"child"; } else{ cout<<"wrong"; } }