Starter Tutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C++ Programming » Programs » Others » CPP program for if else statement
Suryateja Pericherla Categories: Others. No Comments on CPP program for if else statement
Join Our Newsletter - Tips, Contests and Other Updates
Email
Name

In this article we will learn to implement a CPP program for if else statement. A C++ program is provided below which accepts a number (integer) from user. If the given number is n and 1 <= n <= 9, then we have to print the word for the given number (for example, if n is 2, we have to print two). If the given number is greater than 9, then print Greater than 9.

 

Program is as follows:

#include <iostream>
using namespace std;

int main(){
    int n;
    cin >> n;
    if(n>=1 && n<=9){
        if(n==1) cout<<"one";
        if(n==2) cout<<"two";
        if(n==3) cout<<"three";
        if(n==4) cout<<"four";
        if(n==5) cout<<"five";
        if(n==6) cout<<"six";
        if(n==7) cout<<"seven";
        if(n==8) cout<<"eight";
        if(n==9) cout<<"nine";
    }
    else{
        cout<<"Greater than 9";
    }
    return 0;
}

 

Input and output for the above program are as follows:

Input:
5

Output:
five

------------------
Input:
8

Output:
eight

------------------
Input:
44

Output:
Greater than 9

 

How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory