일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 2015 봄학기 알고리즘
- flask
- recursion
- almostIncreasingSequence
- 파이썬 포렌식
- All Longest Strings
- Counting cells in a blob
- Numpy
- C++
- shapeArea
- data_structure
- markdown
- 수 정렬하기
- matrixElementsSum
- 백준
- 파이썬머신러닝완벽가이드
- codesignal
- 2750
- adjacentElementsProduct
- Daily Commit
- baekjun
- cpp
- 피보나치 수
- codesingal
- collections.deque
- 10953
- centuryFromYear
- Sequential Search
- til
Archives
- Today
- Total
Introfor
문자사각형2 본문
정사각형의 한 변의 길이 n을 입력받은 후 다음과 같은 문자로 된 정사각형 형태로 출력하는 프로그램을 작성하시오.
< 처리조건 >
문자의 진행 순서는 왼쪽 위에서부터 아래쪽으로 ‘A'부터 차례대로 채워나가고 다시 오론쪽 아래부터 위쪽으로 채워나가는 방법으로 아래 표와 같이 채워 넣는다. 'Z' 다음에는 다시 'A'부터 반복된다.
<소스코드>
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 32 33 34 35 36 37 38 | #include <stdio.h> int main() { int n = 0; int tmp = -1; int arr[100][100] = { 0 }; scanf("%d", &n); for (int i = 0; i < n; i++) { if (i % 2 == 0) { for (int j = 0; j < n; j++) { tmp++; arr[j][i] =65+tmp; if (tmp == 25) tmp = -1; } } else { for (int j = n - 1; j >= 0; j--) { tmp++; arr[j][i] =65+tmp; if (tmp == 25) tmp = -1; } } } for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { printf("%c ", (char)arr[i][j]); } printf("\n"); } return 0; } | cs |
Comments