Computer Science, asked by ishikaagarwal9897, 9 months ago

n=4
f=1
for i in range(1,n+1):
f=f×i
print(f)

Answers

Answered by boliaarush
0

Answer:

24

Explanation:

1*2*3*4

for loop iterations 4 times

Similar questions