티스토리 뷰
아는 동생이 부탁해서 만들어보았다.
ㄹ자로 숫자가 출력된다.
input : 4 , 6 으로 주었다.
#include <stdio.h>
int main()
{
int input1;
int input2;
int a[100][100];
int i =0;
int j =0;
int count =1;
printf("행 크기를 입력하세요\n");
scanf("%d",&input1);
printf("열 크기를 입력하세요\n");
scanf("%d",&input2);
for(i=0;i<input1;i++)
{
for(j=0;j<input2;j++)
{
a[i][j] = count;
count++;
}
}
for(i=0;i<input1;i++)
{
if(i%2==0)
{
for(j=0;j<input2;j++)
{
printf(" %d",a[i][j]);
}
}
else
{
for(j=input2-1;j>=0;j--)
{
printf(" %d",a[i][j]);
}
}
printf("\n");
}
}
'Study > 소프트웨어' 카테고리의 다른 글
컴퓨터 알고리즘 초급 #6 ( 퀵 정렬 in c ) (0) | 2020.05.18 |
---|---|
컴퓨터 알고리즘 초급 #6 ( 힙 정렬 in c ) 2 (0) | 2020.05.13 |
컴퓨터 알고리즘 초급 #5 ( 힙정렬 in c ) (0) | 2020.03.20 |
컴퓨터 알고리즘 초급 #4 ( 합병정렬 in c ) (0) | 2020.03.20 |
컴퓨터 알고리즘 초급 #3 ( 삽입정렬 in c ) (0) | 2020.03.18 |
댓글