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
- 동적계획법과최단거리역추적
- Vue
- 코드품앗이
- cos pro
- Algorithm
- DFS
- AndroidStudio
- cos pro 1급
- 코딩테스트
- 코테
- DFS와BFS
- 안드로이드스튜디오
- 알고리즘
- C++
- BAEKJOON
- django
- vuejs
- cos
- DART
- 분할정복
- 파이썬
- 안드로이드
- Python
- android
- issue
- 개발
- 백준
- codingtest
- Flutter
- 동적계획법
Archives
- Today
- Total
목록cos 1급 5차 계산기만들기 python (1)
Development Artist
[COS Pro 1급, Python] 5차 10번 : 계산기만들기
문제 유형 빈칸 난이도 easy Note 1. 파이썬의 Class, def, self. Code class Job: def __init__(self): self.salary = 0 def get_salary(self): return salary class PartTimeJob(Job): def __init__(self, work_hour, pay_per_hour): super().__init__() self.work_hour = work_hour self.pay_per_hour = pay_per_hour def get_salary(self): self.salary = self.work_hour * self.pay_per_hour if self.work_hour >= 40: self.salary += (s..
Algorithm/COS
2022. 2. 28. 17:24