Postingan

Menampilkan postingan dari Desember, 2013

C++ Deret Bilangan Prima

#include <stdio.h> #include <conio.h> int main() {     int n,c=0;     printf("masukkan jumlah"); scanf("%d",&n);     printf("deret bilangan prima adalah \n");     for(int i=1;i<=n;i++){         for(int j=1;j<=i;j++){             if(i % j == 0){                 c++;             }         }     if(c == 2) printf("%d\t",i);     c=0;     }     getch(); } http://huda-elnino.blogspot.com/