write a program that takes 5 digit no and calculate 2 power
that no and print it.

Answers were Sorted based on User's Feedback



write a program that takes 5 digit no and calculate 2 power that no and print it...

Answer / venkataramakrishna.danduri

#include <iostream.h>

void main()
{
int b = 0;
int num5digit;
cin>>num5digit;
b = 1<< num5digit;
cout<<"b = "<<b;
}

Is This Answer Correct ?    0 Yes 0 No

write a program that takes 5 digit no and calculate 2 power that no and print it...

Answer / kathir

#include<iostream.h>
void main()
{
int a,n=0;
cout<<"Enter the 5 didgit no:"<<endl;
cin>>a;
n=(a*a);
cout<<"The two power given no is:"<<n<<endl;

}

Is This Answer Correct ?    4 Yes 6 No

write a program that takes 5 digit no and calculate 2 power that no and print it...

Answer / yeah

#include<iostream.h>
#include<math.h>
void main()
{
int a,n=1,i;
cout<<"enter Num";
cin>>a;
//n=pow(2,a);
for(i=0;i<a;i++)
n*=2;
cout<<n;
}

Is This Answer Correct ?    3 Yes 6 No

Post New Answer

More C++ General Interview Questions

What is virtual destructor? What is its use?

0 Answers  


How compile and run c++ program in turbo c++?

0 Answers  


What is a character in c++?

0 Answers  


What are the main features of c++?

0 Answers  


wap to accept 10 numbers & display the number of odd and even numbers??

1 Answers  






Explain terminate() and unexpected() function?

0 Answers  


Write a corrected statement in c++ so that the statement will work properly. x + y=z;

2 Answers  


Describe delete operator?

0 Answers  


Differentiate between the message and method?

1 Answers  


Write a C++ Program to Generate Random Numbers between 0 and 100

1 Answers  


Is c++ free?

0 Answers  


How does the copy constructor differ from the assignment operator (=)?

0 Answers  


Categories