m=66
n=m //3
while n < 25 :
p=n%2
n = n + 5
print (p)
Answers
Answered by
1
Output:
0
Explanation:
> n = m // 3
> n = 66 // 3
> n = 22
> p = n % 2
> p = 22 % 2
> p = 0
Only one iteration as n is incremented by 5 and becomes 27.
Similar questions
Math,
4 months ago
Computer Science,
8 months ago
English,
1 year ago
English,
1 year ago
Science,
1 year ago