fixes
parent
bf305d907e
commit
8f9ba6e1f6
|
@ -4,9 +4,7 @@ import java.util.Scanner;
|
|||
//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or
|
||||
// click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
|
||||
public class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
Scanner scanner = new Scanner(System.in);
|
||||
float number1 = scanner.nextFloat();
|
||||
String operation = scanner.next();
|
||||
|
@ -18,9 +16,9 @@ public class Main {
|
|||
String d = ":";
|
||||
String e = "^";
|
||||
|
||||
|
||||
if( operation != a && operation != b && operation != c && operation != d && operation != e) {
|
||||
System.out.println("ошибка");
|
||||
|
||||
}
|
||||
|
||||
if (":".equals(operation)) {
|
||||
|
@ -49,6 +47,8 @@ public class Main {
|
|||
if ("^".equals(operation)) {
|
||||
double power = Math.pow(number1, number2);
|
||||
System.out.println(power);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue