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 |
Tags
- c#
- blog
- delphi 10.3
- advColumnGrid
- Push
- PyCharm
- COMMIT
- queryset
- 백준
- HTML
- python 3.7
- Visual Studio
- GIT
- Django
- python3
- dbadvgrid
- hackerrank
- TMS
- templates
- MSSQL
- github
- declare
- rank
- anaconda3
- 델파이
- get_object_or_404
- Delphi
- 중복제거
- pythonanywhere
- pyhcarm
Archives
- Today
- Total
목록input (1)
DevHyun
1단계 - 입출력과 사칙연산 - A+B, A-B, A*B, A/B
www.acmicpc.net/problem/1000 www.acmicpc.net/problem/1001 www.acmicpc.net/problem/10998 www.acmicpc.net/problem/1008 1008번: A/B 두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. www.acmicpc.net python 3 1. input만 사용하기 * input('print 될 문구?').split(',') : 입력받은 값을 콤마를 기준으로 분리 a, b = input().split() a = int(a) b = int(b) print(a+b) print(a-b) print(a*b) print(a/b) 2. map 사용하기! : 입력받은 자료형의 각 요소가 합수에 의해 수행된 ..
Algorithm/baekjoon online judge
2020. 10. 16. 09:59