자바 개초보 개허접 질문입니다.. ㅠㅠ
나나
class oper{
int e,f,g,h,i,j,k,l;
public int plus(int a, int b){
e = a + b;
return e;
}
public int minus(int a, int b){
f = a- b;
return f;
}
public int divide(int a, int b){
g = a / b;
return g;
}
public int multi(int a, int b){
h = a * b;
return h;
}
public int plus1(int temp, int c){
i = temp + c;
return i;
}
public int minus1(int temp, int c){
j = temp - c;
return j ;
}
public int divide1(int temp, int c){
k = temp + c;
return k;
}
public int multi1(int temp, int c){
l = temp + c;
return l;
}
}
}
public class Oper2{
public static void main(String args[]){
int x,y,z;
String m1,m2;
int temp,temp2;
oper ob1 = new oper();
x = Integer.parsInt(args[0]);
m1 = args[1];
y = Integer.parsInt(args[2]);
m2 = args[3];
z = Integer.parsInt(args[4]);
if(m1.equals(+)){
temp=ob1.plus(x,y);
if(m2.equals(+){
temp2=ob1.pluse1(temp,z);
System.out.println(temp);
}
}
else{
System.out.println(쌰바쌰바);
}
}
}여기까지 써놨는데 맞았는지 틀렸는진 모르겠구요..일단 컴파일 에러가 나고..정수 개를 받아서 3항 연산자
그러니까
10 + 20 + 10
연산하는 문제입니다;;
도무지 잘 모르겠네요;;;
부디 조언이라도 좀;;;