백준40 [Python/Java] 백준 14681번 - 사분면 고르기 https://www.acmicpc.net/problem/14681 14681번: 사분면 고르기 문제 흔한 수학 문제 중 하나는 주어진 점이 어느 사분면에 속하는지 알아내는 것이다. 사분면은 아래 그림처럼 1부터 4까지 번호를 갖는다. "Quadrant n"은 "제n사분면"이라는 뜻이다. 예를 들어, 좌 www.acmicpc.net Python x = int(input()) y = int(input()) if (x > 0) and (y > 0) : print(1) elif (x 0): print(2) elif (x > 0) and (y < 0): print(4) else: pass Java import java.ut.. 2020. 6. 8. [Python/Java] 백준 2753번 - 윤년 https://www.acmicpc.net/problem/2753 2753번: 윤년 연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오. 윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다. 예를 들어, 2012년은 4의 배수이면서 www.acmicpc.net Python year = int(input()) if year % 4 == 0: if (year % 100 != 0) or (year % 400 == 0): print(1) else: print(0) else: print(0) Java import java.util.Scanner; public class Main { public static void main(String[] args) {.. 2020. 6. 8. [Python/Java] 백준 9498번 - 시험 성적 https://www.acmicpc.net/problem/9498 9498번: 시험 성적 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. www.acmicpc.net Python score = int(input()) if 90 2020. 6. 8. [Python/Java] 백준 1330번 - 두 수 비교하기 https://www.acmicpc.net/problem/1330 1330번: 두 수 비교하기 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. www.acmicpc.net Python a, b = map(int, input().split()) if a > b : print('>') elif a < b : print(' 2020. 6. 8. [Python/Java] 백준 2588번 - 곱셈 https://www.acmicpc.net/problem/2588 2588번: 곱셈 첫째 줄부터 넷째 줄까지 차례대로 (3), (4), (5), (6)에 들어갈 값을 출력한다. www.acmicpc.net Python a = input() b = input() c = int(a) * int(b[len(b)-1]) d = int(a) * int(b[len(b)-2]) e = int(a) * int(b[len(b)-3]) triple_mult = c*1 + d*10 + e*100 print(c, d, e, triple_mult, sep='\n') Java import java.util.Scanner; public class Main { public static void main(String[] args) {.. 2020. 6. 8. 이전 1 ··· 3 4 5 6 7 8 다음