-
Java - 계산기 [ 미완성 ]개발노하우/Java 2007. 4. 19. 23:18
import java.io.*;
class select {
private static int x,y;
static int z;
int i=0;
int tot[] = new int[3];
public static void setx(){
select.x = x;
}
public static void sety(){
select.y = y;
}
void ip()throws IOException{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
for(int i=0;i<tot.length;i++)
{
System.out.println("Input First Value : ");
x = Integer.parseInt(in.readLine());
System.out.println("Input Second Value : ");
y = Integer.parseInt(in.readLine());
System.out.println("연산자를 선택해 주세요. : + - * /");
String ex = in.readLine();
if(ex.equals("+") || ex.equals("-") || ex.equals("*") || ex.equals("/"))
{
System.out.println("You Input Data" + x + "+" + y +"=" + opp(x,ex,y));
tot[i] = opp(x,ex,y);
}
else
System.out.println("연산자를 제대로 입력해 주세요.");
}
}public static int opp(int x, String ex, int y)
{
if(ex.equals("+")) return x+y;
else if(ex.equals("-")) return x-y;
else if(ex.equals("*")) return x*y;
else return x/y;
}}
public class test{
public static void main(String arg[])throws IOException{
select sp = new select();
sp.ip();
}
}
그냥....심심해서 만들어본것;;;;; 굳이 사용하지 않아도 되는 것이들 있는데..
그냥 공부삼아 해본것임..;;;