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
Science,
1 month ago
English,
1 month ago
English,
2 months ago
Chemistry,
8 months ago
Social Sciences,
8 months ago