This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Tampilkan postingan dengan label progaram konversi bilangan desimal integer ke biner. Tampilkan semua postingan
Tampilkan postingan dengan label progaram konversi bilangan desimal integer ke biner. Tampilkan semua postingan

Senin, 05 Maret 2012

progaram konversi bilangan desimal integer ke biner

#include <stdio.h>
#include <stdlib.h>

int main () {
    //deklarasi variable
    int d;
    //judul program
    printf("progaram konversi bilangan desimal integer ke biner\n\n");
    //input
    printf("masukan bilangan desimal integer: "); scanf("%d",&d);
    //proses+output
    printf("Nilai biner hasil konversi      :");
    printf("%d%d%d%d %d%d%d%d %d%d%d%d %d%d%d%d\n",
        (d&32768)>>15, (d&16384)>>14, (d&8192)>>13, (d&4096)>>12,
        (d&2048)>>11, (d&1024)>>10, (d&512)>>9, (d&256)>>8,
        (d&128)>>7, (d&64)>>6, (d&32)>>5, (d&16)>>4,
        (d&8)>>3, (d&4)>>2, (d&2)>>1, (d&1)>>0);
    printf("\n\n");
    system ("pause");
    return (0);
}
/*By D-JokerZzZ*/

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More