Convert the following for(...) loop into while(...) loop,for (int i=10; i<==35; i++)
{
System.out.println()
}
Answers
Answered by
6
Answer:
int i=10;
while(i<=35)
{
i++;
}
Please mark as Brainliest
Similar questions
Physics,
2 months ago
India Languages,
2 months ago
English,
5 months ago
Chemistry,
1 year ago
Social Sciences,
1 year ago