일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- html object
- #bubbleSort
- html5 new tag
- border-box
- relative path
- html multimedia
- hyperledger transaction
- #3차원배열
- git flow
- docker example
- html code
- #C++ has~a
- #JAVASCRIPT
- #자바상속#자바이즈어#is~a
- 토큰경제
- #C++ 연산자함수오버로딩
- #1차원배열
- #성적관리프로그램
- #binary
- mac terminal command
- html plug-in
- #CallByAddress
- html video
- html youtube
- 하이퍼레저패브릭
- #다차원포인터
- #2차원배열
- #android activity
- html charset
- html id
Archives
- Today
- Total
목록#C표만들기 (1)
A sentimental robot
표 만들기
#include int sum(int n); void main() { int i, j, k = 1; putchar(1); for (i = 0; i < 9; i++) { printf("%c%c%c%c%c", 6, 6, 6, 6, 6); putchar(22); } // 마지막 칸 만들기 printf("%c%c%c%c%c", 6, 6, 6, 6, 6); putchar(2); puts(" "); //첫번째 행 숫자 넣기 for (i = 0; i < 10; i++) { printf("%c%5d", 5, sum(k++)); } putchar(5); puts(" "); for (i = 0; i < 9; i++) { putchar(25); for (j = 0; j < 9; j++) { printf("%c%c%c%c%c..
C
2018. 1. 2. 13:18