Computer Science, asked by jyotigupta01, 11 months ago

Rewrite the following code fragments using for loop:
a = 1
while ( a <=10):
print (a)
a = a +1​

Answers

Answered by nidhi5003
6

here is your answer

hope so it may help you

please mark me as the Brainliest answer. :-)

Attachments:
Answered by Anonymous
4

Answer:

Explanation:

.Answer:Explanation:for(a=1; a&lt;=10; a+=1){    print(a)}

Thanks.

Similar questions