Write a program that takes a 5 digit number and calculates
2 power
that number and prints it.
Answer Posted / r.dhanunjay
import java .io.*;
public class Digits {
public static void main(String[] args) throws IOException
{
try
{
System.out.println("Enter the number with 5 didgits");
BufferedReader br= new BufferedReader(new
InputStreamReader( System.in));
String str = br.readLine();
int i =Integer.parseInt(str);
int j =String.valueOf(i).length();
if(j==5)
{
double k =Math.pow(i,2);
System.out.println(k);
}
else
{
System.out.println("enter only 5 didgits number");
}
}
catch(IOException e)
{
System.err.println();
}
}
}
Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Why are getters and setters used?
What is indexof in java?
How do listeners work?
What is the size of integer?
What are "methods" and "fields"?
What is mean by encoding?
Can a constructor have different name than a class name in java?
Difference between notify() method and notifyall() method in java?
Can java hashmap have duplicate keys?
Which keyword specify that a variable is effectively final ?
Give a practical example of singleton class usage?
Can we call virtual funciton in a constructor ?
Does java allow default arguments?
What is a two-pass assembler?
What is finalize()?