숙제 중인데
제가 생각한대로 안나오고 있는데요..
뭐가 잘못됬는지 봐주실수 있을까요
간단한거 같은데 잘모르겟네요
int main()
{
int binary, remainder, decimal = 0, base = 1;
int n = 0, i = 0, j = 0;
int userNum[8];
printf("Input an 8 bit binary number: "); // 여기부터 보시면 될거같아요. 제가 11000000치고 엔터쳤어요
for (i=0; i<8; i++);
{
scanf("%d", &userNum[i]); // 그럼 여기서 그걸 읽고 저장하잖아요
printf("%d\n", userNum[i]);
}
printf("Input rotate value (0-7): "); //여기서 또 2 엔터쳤어요
scanf("%d", &n);
int temp[n];
for (i=0; i < n; i++)
{
temp[i] = userNum[i];
printf("%d", temp[i]); // 그럼 여기서 왜 11이 안나오고 다른숫자가 나오는지 모르겠어요
}
return 0;
}