Sample – Program to enter an integer and output it in the reversed form.

by Nideesh C on February 8, 2011 · 0 comments

in C++




#include <iostream.h>
#include <conio.h>

void main()
{
clrscr();
long int num1,num2,rnum=0;
cout << “Enter an integer : ” << endl;
cin>>num1;
num2=num1;
do
{
rnum=rnum*10;
int digit=num1%10;
rnum+=digit;
num1/=10;
}
while(num1);
cout << “The integer you typed is ” << num2 << “.” << endl;
cout << “The reversed integer is ” << rnum << “.” << endl;
getch();
}

This program takes in an integer num1 as a screen input from the user.
It then outputs the integer in its reversed form using the ‘cout’ command.

Not Satisfied ? Just search & get the result

Related Posts Plugin for WordPress, Blogger...
Be Sociable, Share!

Related posts:

  1. Sample – Program to enter an integer and output the cube of that integer.
  2. Sample – Program to enter an integer and output its 15 multiples.
  3. Sample – Program to enter three integers and output the biggest integer using IF
  4. Sample – Program to enter three integers and output the biggest integer.
  5. Sample – Program to enter an integer and print out its successor.

Leave a Comment

Previous post:

Next post: