public class test02 {
static int Add(int a, int b){
return a+b;
}
static int Sub(int a, int b){
return a-b;
}
static int Mul(int a, int b){
return a*b;
}
static int Div(int a, int b){
return a/b;
}
public static void main(String[] args) {
int a=0; int b=0; String c="";
for (int i=0;i<args.length;i++){
a = Integer.parseInt(args[0]);
c = args[1];
b = Integer.parseInt(args[2]);
}
if (c.equals("+")){
System.out.println( Add(a,b));
}
else if (c.equals("-")){
System.out.println( Sub(a,b));
}
else if (c.equals("*")){
System.out.println( Mul(a,b));
}
else if (c.equals("/")){
System.out.println( Div(a,b));
}
else
System.out.println("잘못 입력되었습니다.");
}
}
메인메소드 인자를 받아서 돌아가는 프로그램인데
딴건다 잘되는데 곱셈을 하면 오류가 나네요 왜이것만 오류가나는걸까요
댓글 분란 또는 분쟁 때문에 전체 댓글이 블라인드 처리되었습니다.