#include <stdio.h>
main()
{
int i, a, b, total;
printf("입력의 개수: ");
scanf(" %d", &a);
b = 1;
total = 1;
i = 1;
while (b >= -1)
{
printf("%d번째 수: ", i);
scanf(" %d\n", b);
if(b = 0)
{
continue;
}
total *= b;
++i;
}
total *= a;
printf("계산값=%f", (float) total);
return 0;
}
여기서 scanf에 데이터를 입력하면 while 반복문이 반복되지 않고 강제로 프로그램이 꺼져버리네요
뭐가 잘못된 걸까요?
#include <stdio.h>
main()
{
int i, b;
b = 1;
i = 1;
while (b > -1)
{
printf("%d번째 수: ", i);
scanf(" %d\n", b);
}
return 0;
}
이렇게 줄여도 종료되는 건 똑같네요 ㅠ
visual studio로 하고 있습니다.
댓글 분란 또는 분쟁 때문에 전체 댓글이 블라인드 처리되었습니다.