목록4. 기타 공부 (17)
회고록 블로그
[문제] https://www.acmicpc.net/problem/2588 2588번: 곱셈 첫째 줄부터 넷째 줄까지 차례대로 (3), (4), (5), (6)에 들어갈 값을 출력한다. www.acmicpc.net [풀이] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int firstNum = sc.nextInt(); int secondNum = sc.nextInt(); // secondNum의 일, 십, 백의 자리 변수 int hundredsDigit = 0, tendsDigit = 0, unitDigit = 0; // seco..
[문제] https://www.acmicpc.net/problem/10430 10430번: 나머지 첫째 줄에 A, B, C가 순서대로 주어진다. (2 ≤ A, B, C ≤ 10000) www.acmicpc.net [풀이] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); if((a >= 1) && (a = 1) && (b = 1) && (b
[문제] https://www.acmicpc.net/problem/10869 10869번: 사칙연산 두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오. www.acmicpc.net [풀이] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); if((a >= 1) && (a = 1) && (b
문제 출처 : https://www.acmicpc.net/problem/1008 1008번: A/B 두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. www.acmicpc.net 풀이 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double a, b; //오차범위 줄이기 위해서 float형이 아닌 double형으로 선언함 do { a = sc.nextDouble(); b = sc.nextDouble(); } while((a
문제 출처 : https://www.acmicpc.net/problem/10998 10998번: A×B 두 정수 A와 B를 입력받은 다음, A×B를 출력하는 프로그램을 작성하시오. www.acmicpc.net 풀이 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a, b; do { a = sc.nextInt(); b = sc.nextInt(); } while((a
문제 출처: https://www.acmicpc.net/problem/1001 1001번: A-B 두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. www.acmicpc.net 풀이 public class Main { public static void main(String[] args) { java.util.Scanner sc = new java.util.Scanner(System.in); int a, b; a = sc.nextInt(); b = sc.nextInt(); System.out.println(a-b); } } import가 없어도 정답으로 인정해주는 듯 하다. 그런데, 정답으로 인정해주는 기준이 뭔지 모르겠다. 심지어 아래의 코드도 정답으로 인정해줌.. public..
나중에 혹시 코딩 테스트를 볼 수도 있으니까 매일 조금씩 문제를 풀며 대비해보기로 했다. 지금은 난이도를 최하로 설정해서 풀고 있는중.. 일단 쉬운 문제들 뿐이지만 나중에는 굉장히 문제 난이도가 급상승해서 1일 1문제 풀기도 어려워지지 않을까.. 일단 문제의 난이도와 상관없이 매일 꾸준히 문제를 풀며 코테를 준비해보자.. 문제 출처 : https://www.acmicpc.net/problem/1000 1000번: A+B 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net 풀이 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc =..