Computer Science, asked by tiwarichanda985, 10 months ago

write a for loop that displays the numbers from 51 to 60.
Please give answer in ur own words ​

Answers

Answered by nichunihal74
19

n=60

for(i=51; i<=n; i++)

{

cout<<i;

cout<<"\n"

}

return0;

Answered by anjanikumarikhushi
4

Answer

Explanation:for a in range (51, 61) :

If a%2==0:

Print (a, "even")

Similar questions