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 |
What is a parameter used for?
What are the major drawbacks of external iteration?
What is jdbc api?
what is difference between abstract factory and factory design patterns?
Do you know thread pools?
what is the significance of listiterator in java?
What are the legal parameters?
Explain the available thread states in a high-level?
What is flush () in java?
What is ascii code?
Is constructor inherited?
what is heap memory?
0 Answers Tavant Technologies, Zensar,