일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- @builder
- github
- stringbuffer
- @AllArgsConstructor
- git
- 프로그래머스
- 알고리즘
- 파이썬
- CRUD
- 깃허브
- Codeup
- 브랜치
- 기본생성자
- @NoArgsConstructor
- HTML
- 상속
- 캡슐화
- 자바
- html tag
- lv1
- 에러
- java
- HashSet
- 부트캠프
- entity
- Python
- DTO
- 부스트코스
- SQL
- 코드업
- Today
- Total
목록전체 글 (90)
잉?
https://codeup.kr/problem.php?id=1266 1266 : n개의 수의 합 n = int(input()) nData = list(map(int, input().split())) nDataAdd = 0 for i in nData: nDataAdd += i print(nDataAdd)
https://codeup.kr/problem.php?id=1265 1265 : 구구단 출력하기 1 dan = int(input()) for i in range(1, 10): print(str(dan) + '*' + str(i) + '=' + str(dan*i))
https://codeup.kr/problem.php?id=1260 1260 : 3의 배수의 합 a, b = map(int, input().split()) add = 0 for i in range(a, b+1): if i % 3 == 0: add += i print(add)
https://codeup.kr/problem.php?id=1259 1259 : 1 부터 n 까지 중 짝수의 합 구하기 n = int(input()) add = 0 for i in range(1, n+1): if i % 2 == 0: add += i print(add)
https://codeup.kr/problem.php?id=1258 1258 : 1 부터 n 까지 합 구하기 n = int(input()) add = 0 for i in range(1, n+1): add += i print(add)
https://codeup.kr/problem.php?id=1257 1257 : 두 수 사이의 홀수 출력하기 a, b = map(int, input().split()) for i in range(a, b+1): if i % 2 == 1: print(i, end = ' ')
https://codeup.kr/problem.php?id=1256 1256 : 별 출력하기 n = int(input()) for i in range(0, n): print('*', end = '')