Conditional Statements Hackerrank Solution CPP For Explanation Watch Video: Sample Input 0 5 Sample Output 0 five Explanation 0 five is the English word for the number . Sample Input 1 8 Sample Output 1 eight Explanation 1 eight is the English word for the number . Sample Input 2 44 Sample Output 2 Greater than 9 Code: #include < bits/stdc++.h > using namespace std; int main() { int n; cin >> n; cin.ignore(numeric_limits<streamsize>::max(), '\n' ); if(n==1){ cout<<"one"; }else if(n==2){ cout<<"two"; }else if(n==3){ cout<<"three"; }else if (n=...