Computer Science, asked by GeniusCommunity, 16 hours ago

Write a program in Java to find the value of the following:
(x/3!)+(x/5!)+(x/7!)
Write this program using Methods/Functions for Class X ICSE

Answers

Answered by tajindersinghrehan71
0

Answer:

#python program for the factorial os a number

a=int (input("enter the number : "))

fac=1

while (a>0):

fac=fac*a

a=a-1

print("FACTORIAL : ", fac)

Similar questions