1)
i=100
while i!=501:
print(i**3)
i+=1
2)
i=50
s=0
while i!=251:
if i%4==0 or i%6==0:
s+=1
print(s)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
1)
i=100
while i!=501:
print(i**3)
i+=1
2)
i=50
s=0
while i!=251:
if i%4==0 or i%6==0:
s+=1
i+=1
print(s)