Write a program that takes a 5 digit number and calculates
2 power
that number and prints it.
Answer / 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 |
How to call one constructor from the other constructor ?
How many types of syncronization?
What is the range of the char type?
Is upper case in java?
Can you achieve runtime polymorphism by data members?
Explain about anonymous inner classes ?
What is the main functionality of Prepared Statement?
Which graphs are functions?
Is class is a data type?
What is keyword auto for?
Explain the JDB in depth & command line.
How do you use final keywords and final variables in Java?