글
(7) 2중 for문 + 배열
C/간단한 프로그램
2018. 6. 18. 15:29
1차원 배열을 2중 for문을 이용하여 조건문 없이 다음과 같이 출력해오기
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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 |
#include <iostream>
using namespace std;
void main()
{
int iArr[] = {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 };
int i = 0;
int j = 0;
int k = 5;
for (i = 0; i <= 5; i++)
{
for ( ; j < i * k; j++)
{
cout << iArr[j] << " \t ";
}
cout << endl;
}
system("pause");
} |
cs |