PERULANGAN
DENGAN WHILE
Program menampilkan
angka 30-0 dengan perulangan while
Listing
program
#include<stdio.h>
#include<conio.h>
main(){
int I, Jum;
I = 30; Jum = 0;
while (I--){
printf("%d", I);
Jum = Jum * I;
}
printf("\n%d", Jum);
getch();
}
0 Response to "PROGRAM DENGAN PERULANGAN DENGAN WHILE"
Post a Comment