blog visitors

Deret Fibonacci

Deret Fibonacci Deret ini merupakan deret matematika yang dimana polanya adalah angka berikutnya merupakan hasil penjumlahan angka sebelumnya Ini adalah contoh deret Fibonacci  1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, dst. Algoritma Deret Fibonacci: Fungsi Fibonacci (int main(void) {     int n, i, f, f1, f2; Deskripsi for(i = 1; i <= n; i++) {         if(i > 2) {             f...

The program determines prime numbers

The progam determinet prime numbers C language   Program Contents:  #include <stdio.h>int main(void) {    int i, num, flag;    printf(" \n");    printf("       DETERMINING THE NUMBERS PRIMA        \n");    printf("____________________________________________\n");    printf("Insert numbers: \n");    scanf("%d",...

Cara ganti dengan domain gratis .co.cc

Cara ganti dengan  domain gratis .co.cc Cara mengganti domain .co.cc kali ini akan saya jelaskan dibawah ini beserta gambarnya: Pertama masuk ke alamat co.cc isi alamat blog yang akan dibuat pada gambar yang dilingkari. jika tidak tersedia ulangi dengan alamat yang lain. Setelah tersedia alamat yang dimasukkan, klik continue to registration pada contoh ini menggunakan alamat www.gudang-galeri.co.cc Masukkan email dan password jika sudah pernah mendaftar pada contoh no.1 dan...

2 Dimensional Array Matrix The Greater Value Comparison

2 Dimensional Array Matrix The Greater Value Comparison C language Program Contents: #include <stdio.h> main(){     int matriks1[3][4];     int matriks2[3][4];     int matriks3[3][4];     int brs,klm;     //input matriks1     printf("Input nilai matriks1 \n");     for (brs=0;brs<=2;brs++)     {         for...

Star Pattern

Star Pattern program C language  Program Contents: #include <stdio.h> #include <conio.h> int main(void) { int i, j, t; printf(" \n"); printf("  --PATTERN STARS--\n"); printf("---------------------\n"); printf(" \n"); printf("Height: ");// input the numbers scanf("%d", &t);// output //Structure for nesting as the formula of the laying of the stars for(i = 1; i <= t; i++) { for(j = 1; j <= t; j++) { printf(" * "); } printf("\n"); } getch(); } Output...

Membuat DNS dan Web Server menggunakan bind9 dan apache di Linux

Bagi anda yang ingin mendownload klik link di bawah sendiri dan tolong tinggalkan komentar  Membuat DNS dan Web Server menggunakan bind9 dan apache di Linux 1. Instal paket bind9 $ sudo apt-get install bind9 2. Konfigurasi IP setelah terinstal (IP untuk koneksi ke client dan IP yang akan ditranslasikan) $ sudo nano /etc/network/interfaces dengan isi sebagai berikut:     sesuaikan IP adress dan Netmask. Disini kami menggunakan IP 192.168.1.1. dan netmask    ...

How to create a network via Wi-Fi Windows 7

How to create a network via Wi-Fi Windows 7 If among the computers connected to the Internet network or a cable modem using GSM / CDMA why do not we make a Wi-Fi alone wrote. Sharring internet can do the work together with your friends without the need to have additional devices. We simply capitalize the operating system Windows 7 on a computer or laptop that is equipped with Wireless Adapter. Certainly would have been available on the laptop....

Router functions and the types

Part of you might not know what a router and its usefulness. For that I'll explain a little about the meaning of the router. Router is a networking device that is used to divide the protocol to the other network members, with the router so a protocol may be sharing the other network devices. The router serves as the primary liaison between two or more networks to carry data from one network to another. The difference is that the switch is a switch connecting multiple devices to form a Local...