목록Baekjun (2)
sugenius
[백준/python3] if문
단계별로 풀어보기 - 2. if문 www.acmicpc.net/step/4 if문 단계 점이 어느 사분면에 있는지 알아내는 문제 www.acmicpc.net - 1 단계 1330번 두 수 비교하기 a,b = input().split() a = int(a) b = int(b) if ab : print('>') elif a==b : print('==') - 2 단계 9498번 시험 성적 score = int(input()) if 90
Baekjun
2021. 3. 29. 13:56
[백준/python3] 입출력과 사칙연산
단계별로 풀어보기 - 1. 입출력과 사칙연산 www.acmicpc.net/step/1 입출력과 사칙연산 단계 입출력과 사칙연산 www.acmicpc.net - 1 단계 2557번 Hello World print('Hello World!') - 2 단계 10718번 We love kriii print('강한친구 대한육군') print('강한친구 대한육군') - 3 단계 10171번 고양이 print( "\ /\ ", " ) ( ')", "( / )", " \(__)|" ,sep="\n") - 4 단계 10172번 개 print( "|\_/|", "|q p| /}", '( 0 )"""\ ', '|"^"` |', "||_/=\\\__|" ,sep="\n") - 5 단계 1000번 A+B a,b = input(..
Baekjun
2021. 3. 29. 12:05