blob: 18858d11ce2bc1007bb6800caec9678279c0a5e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
class PowerofaNumber {
public static void main(String[] args) throws java.io.IOException {
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
BufferedReader input2 = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter X");
int x = Integer.parseInt(input.readLine());
System.out.println("Enter N");
float n = Float.parseFloat(input2.readLine());
if (n > 0){
System.out.println(n + " raised to the power of " + x + " is: " + Math.pow(n,x));
}
else{
System.out.println("n cannot be negative");
}
}
}
//By msglm; Licensed under the AGPL v3
|