일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- face recognition
- 종합
- 입출력
- 선택실행구조
- 8진수
- 비트단위논리연산
- 파이썬
- 16진수
- 산술연산
- 기초100제
- 10진수
- 반복실행구조
- bitwise
- 진수
- 아스키코드
- 문자열
- 코드업
- 기초 100제
- 출력
- 불 자료형
- 논리연산
- OpenCV
- 2차원배열
- 불 연산
- 2진수
- 비교연산
- 딥러닝
- input()
- codeup
- Docker
- Today
- Total
목록
728x90
반응형
SMALL
코드업 (94)
DeepFlowest
문제 : 단어를 1개 입력받는다. 입력받은 단어(영어)의 각 문자를 한줄에 한 문자씩 분리해 출력한다. 답 : 방법1 방법2 코드 : https://github.com/Yearang-Lee/Algorithm/tree/master/CodeUp Yearang-Lee/Algorithm Contribute to Yearang-Lee/Algorithm development by creating an account on GitHub. github.com
문제 : 실수 1개를 입력받아 정수 부분과 실수 부분으로 나누어 출력한다. 답 : 코드 : https://github.com/Yearang-Lee/Algorithm/tree/master/CodeUp Yearang-Lee/Algorithm Contribute to Yearang-Lee/Algorithm development by creating an account on GitHub. github.com
문제 : 공백 문자가 포함되어 있는 문장을 입력받고 그대로 출력하는 연습을 해보자. 답 : 방법1 방법2 코드 : https://github.com/Yearang-Lee/Algorithm/tree/master/CodeUp Yearang-Lee/Algorithm Contribute to Yearang-Lee/Algorithm development by creating an account on GitHub. github.com
문제 : 1개의 단어를 입력받아 그대로 출력해보자. 답 : 방법1 방법2(단어 길이를 50자 이하로 제한 했을 때) 코드 : https://github.com/Yearang-Lee/Algorithm/tree/master/CodeUp Yearang-Lee/Algorithm Contribute to Yearang-Lee/Algorithm development by creating an account on GitHub. github.com
문제 : 주민번호는 다음과 같이 구성된다. XXXXXX-XXXXXXX 앞의 6자리는 생년월일(yymmdd)이고 뒤 7자리는 성별, 지역, 오류검출코드이다. 주민번호를 입력받아 형태를 바꿔 출력해보자. 답 : 설명 : 여러항목 출력 콤마(,)로 구분하면, 문자, 숫자 상관없이 일정공백을 사이에 두고 출력 플러스(+)를 쓰면, 문자끼리는 공백없이 이어져서 출력이 되고, 숫자끼리는 합산된다. 코드 : https://github.com/Yearang-Lee/Algorithm/tree/master/CodeUp Yearang-Lee/Algorithm Contribute to Yearang-Lee/Algorithm development by creating an account on GitHub. github.com
문제 : 년, 월, 일을 입력받아 지정된 형식으로 출력하는 연습을 해보자. 답 : 코드 : https://github.com/Yearang-Lee/Algorithm/tree/master/CodeUp Yearang-Lee/Algorithm Contribute to Yearang-Lee/Algorithm development by creating an account on GitHub. github.com
문제 : 어떤 형식에 맞추어 시간이 입력될 때, 그대로 출력하는 연습을 해보자. 답 : 방법1 방법2 설명 : sep 구분자 print(값1, 값2, sep='문자 또는 문자열') print(변수1, 변수2, sep='문자 또는 문자열') 코드 : https://github.com/Yearang-Lee/Algorithm/tree/master/CodeUp Yearang-Lee/Algorithm Contribute to Yearang-Lee/Algorithm development by creating an account on GitHub. github.com
문제 : int형 정수 1개를 입력받아 공백을 사이에 두고 3번 출력해보자. 답 : 방법1 방법2 코드 : https://github.com/Yearang-Lee/Algorithm/tree/master/CodeUp Yearang-Lee/Algorithm Contribute to Yearang-Lee/Algorithm development by creating an account on GitHub. github.com