Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- boostcamp #aI tech #주간리뷰
- 파이썬
- regExr
- 함수
- amend
- github
- 수정사항업데이트
- local repository 생성
- Baekjoon
- Restore
- 백준
- git commit
- Reset
- Push
- STAGE
- remote repository 생성
- 1
- git push
- git
- 정규식
- 두수비교하기
- git config global
- commit
- 15596
- python
- 1330
- ADD
- GitHub 설치
Archives
- Today
- Total
목록python (1)
Très bien

두 수 비교하기 ◎ Problem Definition 1330번: 두 수 비교하기 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. www.acmicpc.net ◎ Implementation 1. Problem Type - Implementation (브론즈 4) 2. Problem Analysis A와 B를 비교하는 프로그램을 작성하시오. - if 문을 사용하여 비교하고 출력한다. 3. Solution_1 (☆초기 접근) ▶ 완성 코드 # 백준 1330 - 두 수 비교하기 # Date : Jan. 07. 2022 # written by LemonSoda a, b = map(int, input().split()) if a > b: print('>') elif a < b: pr..
Coding/Algorithm
2022. 1. 8. 08:32