Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘
- codingtest
- 코딩테스트
- Vue
- django
- Algorithm
- DART
- DFS와BFS
- 동적계획법
- C++
- DFS
- BAEKJOON
- 분할정복
- 코드품앗이
- 개발
- issue
- cos
- 백준
- cos pro
- 안드로이드스튜디오
- AndroidStudio
- android
- vuejs
- 안드로이드
- 동적계획법과최단거리역추적
- cos pro 1급
- Python
- Flutter
- 코테
- 파이썬
Archives
- Today
- Total
목록cos 분침과 시침의 각도 구하기 python (1)
Development Artist
[COS Pro 1급, Python] 4차 9번 : 분침과 시침의 각도 구하기
문제 유형 코딩 난이도 easy Note 1. 공식 : 분침과 시침 사이각 = 30*(시침) - 5.5*(분침) Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def solution(hour, minute): answer = 30*hour-5.5*minute # 공식: 30*(시침)-5.5*(분침) return "{:.1f}".format(answer) hour = 3 minute = 0 ret = solution(hour, minute) print("solution 함수의 반환 값은", ret, "입니다.") ※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
Algorithm/COS
2022. 2. 25. 13:19