write a program that a 5 digit number and calculates 2
power that number and prints it.
Answer Posted / umesh
// This will yield the result if user enters only 5 digit
number.
//import headers
class power
{
public static void main(string args[])
{
system.out.println("Enter 5 digit number : ");
n = system.in.readline();
b =0;
len = n.length();
if(len == 5)
{
a=Integer.ParseInt(n)
for i=0;i<a;i++
{
b = 2*2;
}
system.out.println("2 power entered 5 digit number is :
"+b)
}
else
{
system.out.println("Entered number in more/less than
5 digits")
}
}
//Sorry, not much familiar about the syntax.. but here is
the logic..
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
How did c++ start?
When do we run a shell in the unix system? How will you tell which shell you are running?
Why do we use classes in c++?
What are all predefined data types in c++?
Is dev c++ a good compiler?
What is the difference between reference and pointer?
What is an accessor in c++?
I want explanation for this assignment: how to connect mysql database using c/c++,please explain this detailly?
What is bubble sort c++?
Can you sort a set c++?
What is polymorphism & list its types in c++?
What is c++ best used for?
Explain what you mean by a pointer.
Is c++ proprietary?
Why ctype h is used in c++?