작성자 | marine12 | ||
---|---|---|---|
작성일 | 2018-05-17 14:08:12 KST | 조회 | 443 |
제목 |
이 코딩 머가 잘못된건가요 ㅜㅜ
|
1234
5678 을
12
34
56
78로 만들고 싶은데 안되네요 ㅜㅜ
#include <stdio.h>
int main() {
int num1[2][4]={1,2,3,4,5,6,7,8};
int num2[4][2];
int a, b;
for(a=0; a<2; a++);
{
for(b=0; b<4; b++);
{
printf("%d ", num1[a]);
}
printf(" ");
}
for(a=0; a<2; a++)
{
for(b=0; b<4; b++)
{
num2[a]=num1[a];
}
}
for(a=0; a<4; a++)
{
for(b=0; b<2; b++)
{
printf("%d",num2[a]);
}
}
return 0;
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
© PlayXP Inc. All Rights Reserved.