일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- cpp
- Numpy
- adjacentElementsProduct
- codesignal
- 2750
- matrixElementsSum
- markdown
- 2015 봄학기 알고리즘
- 파이썬머신러닝완벽가이드
- 수 정렬하기
- recursion
- Sequential Search
- Python
- flask
- codesingal
- 피보나치 수
- All Longest Strings
- data_structure
- centuryFromYear
- baekjun
- 파이썬 포렌식
- shapeArea
- almostIncreasingSequence
- Daily Commit
- 10953
- C++
- 백준
- collections.deque
- Counting cells in a blob
- til
Archives
- Today
- Total
Introfor
2~9단 구구단 출력
2~9단 구구단을 아래와 같은 패턴으로 출력하시오.12345678910111213141516171819202122#include int main() { int i = 2, j = 1; while (1) { printf("%d * %2d = %2d ", i, j, i*j); i++; if (i == 10) { printf("\n"); i = 2; j++; } if (j == 10) break; } return 0;}Colored by Color Scriptercs
Doing/C&C++
2016. 11. 15. 02:37