You are viewing a single comment's thread. Return to all comments →
using namespace std; int main(){ cout<<"Enter the number:"<>i; string num[]={ "one","two","three","four","five","six","seven","eight","nine" };
if(1<=i && i<=9) { cout<<num[i-1]<<endl; } else{ cout<<"Greater than 9"<<endl; } return 0;
}
Seems like cookies are disabled on this browser, please enable them to open this website
Conditional Statements
You are viewing a single comment's thread. Return to all comments →
include
using namespace std; int main(){ cout<<"Enter the number:"<>i; string num[]={ "one","two","three","four","five","six","seven","eight","nine" };
}