지금까지 배운 것에 종합문제였다. 내가 처음 작성한 코드는 다음과 같다. import java.util.Scanner; class Main{ public static void main(String[] args){ Scanner ab = new Scanner(System.in); Double a = ab.nextDouble(); Double b = ab.nextDouble(); System.out.println(a+b); System.out.println(a-b); System.out.println(a*b); System.out.println(a/b); System.out.println(a%b); } } 이유는 a/b가 실수타입으로 나와야 정확한 값이 나오기 떄문에 double타입으로 선언했지만, 결과는 ..
문제유형은 이전의 문제들과 같았지만 나름의 함정이 있는 문제였다. import java.util.Scanner; class Main{ public static void main(String[] args){ Scanner ab = new Scanner(System.in); int a = ab.nextInt(); int b = ab.nextInt(); System.out.println(a/b); } } 처음 제출한 코드는 나눗셈을 int(정수)값으로 출력하는 변수타입을 사용했는데 고민해보니 소수점 아래 숫자를 담을 수 있는 double(실수)값을 출력하는 변수타입을 사용해야했다. 단순한 실수지만 뭐가 잘못된 것인지 몰라 애먹었다....ㅎㅎ 앞으로는 출력되는 값이 실수인지 정수인지 고민해가며 문제를 풀어야겠다.
10998번은 문제 1000번과 같은 유형이다. Scanner를 불러오고 정수 A,B값을 받아줄 변수를 선언하고 sysout하면 된다. import java.util.Scanner; class Main{ public static void main(String[] args){ Scanner ab = new Scanner(System.in); int a = ab.nextInt(); int b = ab.nextInt(); System.out.println(a*b); } } 짜잔~!!! 이제는 비슷한 유형을 넘어가야 하나 고민이 된다. 아니면 포스팅을 하지 말아야하나??? 고민좀 해봐야겠다.
강한친구 대한육군을 두 문장 출력하는 간단한 문제다. println을 사용하여 풀 수 있는 비교적 간단한 문제다. class Main{ public static void main(String[] args){ System.out.println("강한친구 대한육군"); System.out.println("강한친구 대한육군"); } } 정답이었다. 그러나 이렇게 쉽게하면 뭔가 재미가 없지 않나?! for문을 사용해서 풀어보았다. class Main{ public static void main(String[] args) { father j =new father(); j.james(); } } class father{ public void james(){ for(int i=0; i