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

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?