For Loop In C Hackerrank Solution Code Example
Example: for loop in c++ hackerrank solution
#include<bits/stdc++.h> using namespace std; int main() { int a,b; string c[]={"","one","two","three","four","five","six","seven","eight","nine"}; cin>>a>>b; for(int i=a;i<=b;i++) cout<<((i<=9)?c[i]:((i%2==0)?"even":"odd"))<<endl; }
Comments
Post a Comment