코딩 테스트(Coding Test)/백준(26)
-
[JAVA] 백준 3단계
2739 구구단나의 답) 108msimport java.io.*;class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); for (int i = 1; i 다른 사람의 답) 100msimport java.io.*;import java.util.*;class Main { public static void main(String[] args) throws IOExceptio..
2024.09.04 -
[JAVA] 백준 2단계
1330 두 수 비교하기나의 답) 100msimport java.io.*;import java.util.StringTokenizer;class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int a = Integer.parseInt(st.nextToken()); int b = Integer.parseInt(st.nextToken()..
2024.09.03 -
[JAVA] 백준 1단계
2557 Hello World나의 답)public class Main { public static void main(String[] args) { System.out.println("Hello World!"); }}1000 A+B나의 답1) 176msimport java.util.*;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int A = sc.nextInt(); int B = sc.nextInt(); System.out.println(A + B); }} 나의 답..
2024.09.03 -
[Python] 윤년
# 정수 입력 받기# 윤년이면 1, 아니면 0 출력# 윤년 조건: 4의 배수 && 100의 배수가 아닐 때 || 400의 배수일 때x = int(input())if ((x % 4 == 0) and (x % 100 != 0) or (x % 400 == 0)): print('1')else: print('0')
2024.07.17 -
[Python] 시험 성적
# 정수 입력 받기# 조건에 맞게 성적 출력하기score = int(input())if (90 개선한 코드score = int(input())if score >= 90: print("A")elif score >= 80: print("B")elif score >= 70: print("C")elif score >= 60: print("D")else: print("F")
2024.07.17 -
[Python] 두 수 비교하기
# 두 정수 입력 받기(공백 한 칸으로 구분)# > b): print('>')elif (a == b): print('==')else: print('
2024.07.17