경계값 0, 10을 넣었는데 왜 while 문을 벗어나는지 모르겠어요
52
차희원
작성한 질문수 12
0
#include <stdio.h>
int main(void)
{
int nInput = -1;
while ((nInput > 10 || nInput < 0))
{
printf("Enter nInput: ");
scanf_s("%d", &nInput);
}
puts("end");
return 0;
}
답변 0
화면 깜박임 현상
2
49
1
17강 강의에 목데이터 첨부파일이 없습니다.
2
57
2
무서워요 다음에는... 조심.
1
36
1
git bash .env
1
49
1





