일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- python list
- #실생활영어
- #영어
- findContours
- #프로젝트
- convexhull
- #영어 명언
- #1일1영어
- #English
- word embedding
- tensorflow update
- TensorFlow
- opencv SURF
- c언어
- Convolution Neural Network
- python 알고리즘
- 영어
- 영어명언
- object detection
- #opencv
- 딥러닝
- text2img
- #Android
- keras
- #일상영어
- 이미지 생성
- python __init__
- 완전탐색
- tokenizing
- #실생활 영어
Archives
- Today
- Total
목록실수 자릿수 (1)
When will you grow up?
수치 자릿수 맞추기
정수 자릿수 맞추기 서식-> %자릿수d ex) #include int main(void) { int a = 100, b = 30, c = 45; printf("a 몸무게는 %5d 입니다\n", a); printf("b 몸무게는 %5d 입니다\n", b); printf("c 몸무게는 %5d 입니다\n", c); return 0; } 소수 자릿수 맞추기 서식-> %전체자리수.소수자리수f ex) #include int main(void) { double pi = 3.14159; printf("%6.2f \n",pi); return 0; }
02. Study/C언어
2017. 1. 5. 15:59