Soal :
Buatlah table factorial n!, dari n = 1 , 2 , . . . . . . . . . . . . . . . . . . . . . . 10 , berikut jumlah seluruh factorial tersebut.
n! = n (n-1) (n-2) . . . . . . . . .
Contoh :
3! = 3.2.1 = 6
5! = 5.4.3.2.1 = 120
Jawaban :
Flowchart
Flowchart
n :Jumlah deret
m : perkalian factor
a : tempat penyimpanan sementara hasil satu factorial
t : jumlah deret
m : perkalian factor
a : tempat penyimpanan sementara hasil satu factorial
t : jumlah deret
Program
CLS
a = 1
t = 0
FOR n = 1 TO 10
FOR m = 1 TO n
LET a = a * m
NEXT m
t = t + a
PRINT n; "! "; "="; a
PRINT
a = 1
NEXT n
PRINT
PRINT "Jumlah Deret : "; t
END
Output :
Output :
0 komentar:
Posting Komentar