Говорит , что два последних метода не выполняются, в чем проблема, я не догоняю)
package com.javarush.task.task06.task0612;
/*
Калькулятор
*/
public class Calculator {
public static int plus(int a, int b) {
int c = a+b;
return c;
}
public static int minus(int a, int b) {
int c = a-b;
return c;
}
public static int multiply(int a, int b) {
int c= a*b;
return c;
}
public static double division(double a, double b) {
double c=a/b;
return c;
}
public static double percent(double a, double b) {
double c=(a/100)*b;
return c;
}
public static void main(String[] args) {
}
}