반응형 분류 전체보기72 [Python] 백준 9653번 스타워즈 로고 https://www.acmicpc.net/problem/9653 9653번: 스타워즈 로고 스타워즈 로고를 예제 출력과 같이 출력하는 프로그램을 작성하시오. www.acmicpc.net print(" 8888888888 888 88888") print(" 88 88 88 88 88 88") print(" 8888 88 88 88 88888") print(" 88 88 888888888 88 88") print("88888888 88 88 88 88 888888") print() print("88 88 88 888 88888 888888") print("88 88 88 88 88 88 88 88") print("88 8888 88 88 88 88888 8888") print(" 888 888 888888.. 2021. 6. 17. [Python] 백준 2558번 A+B-2 https://www.acmicpc.net/problem/2558 2558번: A+B - 2 첫째 줄에 A, 둘째 줄에 B가 주어진다. (0 < A, B < 10) www.acmicpc.net a = int(input()) b = int(input()) print(a + b) 2021. 6. 17. [Python] 백준 16170번 오늘의 날짜는? https://www.acmicpc.net/problem/16170 16170번: 오늘의 날짜는? 지금 시각을 UTC+0(세계 표준시)을 기준으로 나타냈을 때의 연도, 월, 일을 한 줄에 하나씩 순서대로 출력한다. www.acmicpc.net import datetime date = datetime.datetime.now() print(date.year) print(date.month) print(date.day) 2021. 6. 17. [Python] 백준 10998번 AxB https://www.acmicpc.net/problem/5338 5338번: 마이크로소프트 로고 마이크로소프트 로고를 예제 출력처럼 출력하는 프로그램을 작성하시오. www.acmicpc.net a, b = map(int, input().split()) print(a*b) 2021. 6. 16. 이전 1 ··· 12 13 14 15 16 17 18 다음 반응형