✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Rewrite the following for loop as a while loop (make sure to include the rest of the required preceding code):
for(x = 1; x < 10; x++){ printf("%d", x);}
and the following while loop as a for loop:
a = 1;
b = 6;
while (a < b)
{
a++;
printf("%d\n", a);
}
Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!