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
Chemistry,
2 months ago
Chemistry,
2 months ago
English,
4 months ago
Chemistry,
10 months ago
Social Sciences,
10 months ago