What is output of the following code?
#include <stdio.h>
#include <conio.h>
void main()
{
int s = 0;
while (s++ < 10)
{
if (s < 4 && s < 9)
continue;
printf(" %d ", s);
}
getch();
}
#include <stdio.h>
#include <conio.h>
void main()
{
int s = 0;
while (s++ < 10)
{
if (s < 4 && s < 9)
continue;
printf(" %d ", s);
}
getch();
}
1 2 3 4 5 6 7 8 9
3 4 5 6 7 8 9
4 5 6 7 8 9
4 5 6 7 8 9 10
Hãy suy nghĩ và trả lời câu hỏi trước khi xem đáp án
Tổng hợp câu hỏi trắc nghiệm lập trình C/C++ có đáp án và lời giải đầy đủ nhằm giúp các bạn dễ dàng ôn tập lại toàn bộ các kiến thức.