Write an appropriate foror while loop for the situations described below:-
a) A loop is to be repeated 15 times.
Answers
Answered by
0
Answer:
15times
Explanation:
int x,i;
x=15;
for(i=0;i<=x;i++)
{println (" hi");
}
system.out.println("");
Answered by
0
for x in range(15):
print(x)
Similar questions