Sabtu, 14 Juli 2012

C++ : CONTOH PROGRAM BILANGAN PRIMA



Listing program :

# include
# include

void main()
{
 int k;
cout<<"masukkan sebuah bilangan = "; cin>>k;

 if ((k%2==1) || (k%3==1) || (k%5==1) || (k%7==1))
cout<<"bilangan prima ";
else
     cout<<"bukan bilangan prima";
 }




C++ : CETAK BILANGAN VIBONANCI 5



Listing Program :

#include
#include

main()
{
int x,y;
    for(x=1;x<=4;x++)
        {
            for(y=x;y<=4;y++)
                {
                    cout<                }
                cout<            }}



C++ : CETAK BILANGAN VIBONANCI 4



Listing Program:

# include
#include
void main()
{
 char x,y;
 for (x='A';x<='E';x++)
  {
    for (y='A';y<='E';y++)
     {
        if (x=='C')
  cout<  else if (y=='C')
  cout<  else
  cout<     }
     cout<     }}



C++ : CETAK BILANGAN VIBONANCI 3




Listing Program :

#include
#include

void main()
{
int x,y;
    for(x=5;x>=1;x--)
        {
            for( y=1;y<=x;y++)
                {    cout<                }
                cout<            }}






C++ : CETAK BILANGAN VIBONANCI 2




Listing Program :

# include

void main()

{
for (int x=1;x<=5;x++)
    {
    for (int z=5-x;z>= 1;z--)
        cout<<" ";
    for (int y=1;y<=x;y++)
        cout<<"* ";
    cout<
    }
for (int a=4;a>=1;a--)
    {
    for (int b=4-a;b>= 1;b--)
        cout<<" ";
    for (int c=1;c<=a;c++)
        cout<<" "<<"*";
    cout<
    }}




C++ : CONTOH CETAK BIL VIBONANCI 1



Listing Program :

# include
#include
void main()

{
int x,y,z,a=1;
for ( x=1;x<=3;x++)
    {
    for ( z=2;z>= x;z--)
        cout<<" ";
    for ( y=1;y<=x;y++)
        {cout<        a++;}
    cout<    }
for ( x=1;x<=2;x++)
    {
    for ( z=1;z<=x;z++)
        cout<<" ";
    for ( y=2;y>=x;y--)
        {cout<        a++;}
    cout<    }
}




C++ : CONTOH PROGRAM CETAK ANGKA MENGGUANAKAN FOR



Listing Program :

#include
#include

void main()
{
int x,y;
    for(x=10;x>=2;x-=2)
        {
            for( y=x;y>=2;y-=2)
                {    cout<                }
                cout<            }}