• Home
  • About
  • Sitemap
  • Contact
  • Forum
MENU
Tips blog, tips internet dan tips komputer | TIPSKOMPUTERKU

Blog seputar tips tips komputer, internet dan blog, download software, listing program c++, java dan banyak lagi tips dan trik lainnya

  • Features
    • Features 1
    • Features 2
    • Features 3
    • Features 4
    • Features 5
  • Blog
  • Sitemap
  • Categories
    • CSS
      • Item 11
      • Item 12
      • Item 13
      • Item 14
    • Graphic design
      • Item 21
      • Item 22
      • Item 23
      • Item 24
    • Development tools
      • Item 31
      • Item 32
      • Item 33
      • Item 34
    • Web design
      • Item 41
      • Item 42
      • Item 43
      • Item 44
  • Work
    • Music
      • Recording
        • Recording 1
        • Recording 2
        • Recording 3
      • Equipment
        • Equipment 1
        • Equipment 2
        • Equipment 3
      • Distribution
        • Distribution 1
        • Distribution 2
        • Distribution 3
    • Video
      • Alpha
        • Alpha 1
        • Alpha 2
        • Alpha 3
      • Omega
        • Omega 1
        • Omega 2
        • Omega 3
      • Zulu
        • Zulu 1
        • Zulu 2
        • Zulu 3
    • Image
      • Work 1
        • Work 1
        • Work 2
        • Work 3
      • Work 2
        • Work 1
        • Work 2
        • Work 3
      • Work 3
        • Work 1
        • Work 2
        • Work 3
  • Cars
  • Fashion
  • 404
  • Random
Archive for Juni 2011
Cara Mempercepat Mozilla Firefox

Cara Mempercepat Mozilla Firefox

Fadhilah Amal Add Comment
Fadhilah Amal
Cara ini adalah cara faforit saya untuk mempercepat browsing menggunakan mozilla. Terasa memang lebih enteng setelah mozilla disetting ul...
Read More
Listing Program C++ Penjualan Structure dengan Array dan Function

Listing Program C++ Penjualan Structure dengan Array dan Function

Fadhilah Amal Add Comment
Fadhilah Amal
#include<conio.h> #include<iostream.h> #include<stdio.h> #include<ctype.h> #include<iomanip.h> #define M...
Read More
Listing Program C++ Nested Structure

Listing Program C++ Nested Structure

Fadhilah Amal Add Comment
Fadhilah Amal
#include<stdio.h> #include<conio.h> #include<iostream.h> main() { struct dtmhs { char nim[5]; char nama[15]; };...
Read More
Listing Program C++ Structure Sederhana

Listing Program C++ Structure Sederhana

Fadhilah Amal Add Comment
Fadhilah Amal
#include<conio.h> #include<iostream.h> main() { struct { char nim[5]; char nama[15]; float nilai; } mahasiswa; clrsc...
Read More
Listing Program C++ Stack

Listing Program C++ Stack

Fadhilah Amal Add Comment
Fadhilah Amal
#include <iostream.h> #include <conio.h> //deklarasi 'STACK' dengan struct dan array struct STACK {     int data[...
Read More
Listing Program C++ Search Sequential 2

Listing Program C++ Search Sequential 2

Fadhilah Amal Add Comment
Fadhilah Amal
#include <iostream.h> #include <conio.h> int cari_linear(int array[],int ukuran, int cari); void main() {   const int uku...
Read More
Listing Program C++ Antrian Queue

Listing Program C++ Antrian Queue

Fadhilah Amal 4 Comments
Fadhilah Amal
#include <iostream.h> #include <conio.h> main() {     int cek=0, data[20], x, hapus;     char pil;     do {             ...
Read More
Listing Program C++ Pengurutan Data Selection Sort

Listing Program C++ Pengurutan Data Selection Sort

Fadhilah Amal Add Comment
Fadhilah Amal
#include <iostream.h> #include <conio.h> int data[10],data2[10]; int n; void tukar(int a, int b) {  int t;  t = data[b]...
Read More
Listing Program C++ Search Sequential

Listing Program C++ Search Sequential

Fadhilah Amal Add Comment
Fadhilah Amal
#include <conio.h> #include <iostream.h> void main() { clrscr(); int data[8]={8,10,6,-2,11,7,1,100}; int cari; int flag=...
Read More
Listing Program C++ Search Sequential

Listing Program C++ Search Sequential

Fadhilah Amal Add Comment
Fadhilah Amal
#include <conio.h> #include <iostream.h> void main() { clrscr(); int data[8]={8,10,6,-2,11,7,1,100}; int cari; int flag=...
Read More
Listing Program C++ Quick Sort

Listing Program C++ Quick Sort

Fadhilah Amal 1 Comment
Fadhilah Amal
#include <iostream.h> #include <conio.h> #define max 20 void quick_sort(int darr[max], int lb, int ub) {   int a;    int ...
Read More
Listing Program C++ Exchange Sort

Listing Program C++ Exchange Sort

Fadhilah Amal Add Comment
Fadhilah Amal
#include <iostream.h> #include <conio.h> int data[10],data2[10]; int n; void tukar(int a, int b) {  int t;  t = data[b]...
Read More
Listing Program C++ Exchange Sort

Listing Program C++ Exchange Sort

Fadhilah Amal Add Comment
Fadhilah Amal
#include <iostream.h> #include <conio.h> int data[10],data2[10]; int n; void tukar(int a, int b) {  int t;  t = data[b]...
Read More
Listing Program C++ Bubble Sort

Listing Program C++ Bubble Sort

Fadhilah Amal Add Comment
Fadhilah Amal
#include <iostream.h> #include <conio.h> int data[10],data2[10]; int n; void tukar(int a, int b) {  int t;  t = data[b]...
Read More
Listing Program C++ Bubble Sort

Listing Program C++ Bubble Sort

Fadhilah Amal Add Comment
Fadhilah Amal
#include <iostream.h> #include <conio.h> int data[10],data2[10]; int n; void tukar(int a, int b) {  int t;  t = data[b]...
Read More
Listing Program Java Seleksi Menggunakan Switch

Listing Program Java Seleksi Menggunakan Switch

Fadhilah Amal Add Comment
Fadhilah Amal
class kswitch { public static void main (String[]args) { int kode=2; switch(kode) { case 1: System.out.println("inggris"); ...
Read More
Listing Program Java Seleksi Menggunakan Switch

Listing Program Java Seleksi Menggunakan Switch

Fadhilah Amal Add Comment
Fadhilah Amal
class kswitch { public static void main (String[]args) { int kode=2; switch(kode) { case 1: System.out.println("inggris"); ...
Read More
Listing Program Java Seleksi Menggunakan If

Listing Program Java Seleksi Menggunakan If

Fadhilah Amal Add Comment
Fadhilah Amal
public class latseleksi1 { public static void main(String[]args) { int a=1, b=10; if (a<5) { System.out.println("nilai a lebi...
Read More
Listing Program Java Seleksi Menggunakan If

Listing Program Java Seleksi Menggunakan If

Fadhilah Amal Add Comment
Fadhilah Amal
public class latseleksi1 { public static void main(String[]args) { int a=1, b=10; if (a<5) { System.out.println("nilai a lebi...
Read More
Listing Program Java Seleksi If

Listing Program Java Seleksi If

Fadhilah Amal Add Comment
Fadhilah Amal
public class latseleksi2 { public static void main(String[]args) { int a=1, b=10; if (a<5){ System.out.println(a+"Nilai a lebi...
Read More
Listing Program Java Seleksi-IF

Listing Program Java Seleksi-IF

Fadhilah Amal 1 Comment
Fadhilah Amal
public class latseleksi3 { public static void main(String[]args) { char nh; double na=75; if (na>=80){ nh='A'; } else if...
Read More
Listing Program Java Data Nilai Mahasiswa dengan Seleksi

Listing Program Java Data Nilai Mahasiswa dengan Seleksi

Fadhilah Amal Add Comment
Fadhilah Amal
import java.io.*; public class tugasku { public static void main(String[]args) throws IOException { double na; char nh; int ua,ut,tu;...
Read More
Langganan: Postingan (Atom)
Copyright tips-komputerku.blogspot.com. Diberdayakan oleh Blogger.

Artikel Terkait

Related Posts Plugin for WordPress, Blogger...

Random Posts

Recent Posts

alexa

Top Computers Sites

Recent

Comments

W3 Directory - the World Wide Web Directory

Subscribe Here

Categories

  • Blog
  • Download
  • Download Software
  • HTML
  • Internet
  • Kesehatan
  • Progam Mysql
  • Program C++
  • Program Java
  • Program Matlab
  • Program Shell
  • SEO
  • Tema Windows
  • Web Programming

Random Posts

Follow us

Blog Archive

  • ►  2013 (8)
    • ►  Juni (1)
    • ►  April (2)
    • ►  Maret (3)
    • ►  Januari (2)
  • ►  2012 (21)
    • ►  Desember (1)
    • ►  November (5)
    • ►  Juni (8)
    • ►  April (4)
    • ►  Januari (3)
  • ▼  2011 (67)
    • ►  Desember (11)
    • ►  Juli (16)
    • ▼  Juni (22)
      • Cara Mempercepat Mozilla Firefox
      • Listing Program C++ Penjualan Structure dengan Arr...
      • Listing Program C++ Nested Structure
      • Listing Program C++ Structure Sederhana
      • Listing Program C++ Stack
      • Listing Program C++ Search Sequential 2
      • Listing Program C++ Antrian Queue
      • Listing Program C++ Pengurutan Data Selection Sort
      • Listing Program C++ Search Sequential
      • Listing Program C++ Search Sequential
      • Listing Program C++ Quick Sort
      • Listing Program C++ Exchange Sort
      • Listing Program C++ Exchange Sort
      • Listing Program C++ Bubble Sort
      • Listing Program C++ Bubble Sort
      • Listing Program Java Seleksi Menggunakan Switch
      • Listing Program Java Seleksi Menggunakan Switch
      • Listing Program Java Seleksi Menggunakan If
      • Listing Program Java Seleksi Menggunakan If
      • Listing Program Java Seleksi If
      • Listing Program Java Seleksi-IF
      • Listing Program Java Data Nilai Mahasiswa dengan S...
    • ►  April (18)

Comments

Recent Posts

Cari Blog Ini

Link teman

  • blog leehans jepang
  • blog wallfren
  • kursus menjahit
  • markoplace website Iklan baris gratis tanpa daftar
  • mp3 download
  • pasang iklan baris jual beli rumah aziastore.web.id
  • Shared Files Search engine
  • situs pasang iklan baris gratis
  • Social Networking - Social Bookmarking Site
  • teknologi web
Blog ini berisi tentang cara membuat blog, tips blogging, Artikel Tentang Kesehatan, Tips Kecantikan Kulit Wajah, Make Money Blogging, Free Antivirus Software Download, Free Software Programs, Free PC Software Downloads dan lain-lain...

Langganan

Postingan
Atom
Postingan
Semua Komentar
Atom
Semua Komentar

Pengikut

Categories

  • Blog
  • Download
  • Download Software
  • HTML
  • Internet
  • Kesehatan
  • Progam Mysql
  • Program C++
  • Program Java
  • Program Matlab
  • Program Shell
  • SEO
  • Tema Windows
  • Web Programming

Translate

Facebook

Pages

  • Home
  • SEO
  • Tema Windows
  • Blogging
  • Download Software
  • Internet
  • Kesehatan
  • About

Flickr

Popular Posts

  • Cara Menulis Post Blog Pertama Kali ?
    Cara Menulis Post Blog Pertama Kali ?
    Artikel ini berisi beberapa ide untuk membantu orang-orang yang memulai blog , sama seperti saya, untuk menemukan hanya dalam satu ...
  • Download Naruto Shippuden Windows 8 Theme Gratis
    Download Naruto Shippuden Windows 8 Theme Gratis
    Bikin keren PC atau laptop kamu dengan Naruto Shippuden Windows 8 Theme Gratis. Khusus bagi para pecinta anime Naruto Shippuden Langsung...
  • Listing Program C++ Huruf Terbalik
    #include<iostream.h> #include<conio.h> void main() { char string [90]; int indeks; cout<<"masukan suatu string...
  • Pembuatan Situs Menggunakan Framework Codeigniter
    1. Instalasi Code Igniter Karena berupa folder php, maka instalasi Code Igniter, cukup dengan mengekstrak file kompresi yang di dapat...
  • Cara Memulai Sebuah Blog Gratis - Tempat Terbaik Untuk Mulai Blogging
    Cara Memulai Sebuah Blog Gratis - Tempat Terbaik Untuk Mulai Blogging
     Pertama-tama apa itu blog? Mania blogging juga terus meningkat. Orang-orang berlomba melawan satu sama lain memamerkan konten mereka di b...
  • Daftar situs artikel gratis yang bisa dipublikasikan untuk blog atau situs
    http://www.ezinearticles.com/ http://www.articles-hub.com http://www.articlesfactory.com http://www.goarticles.com http://www.articletra...
  • Top 5 SEO Tips Terbaik Untuk Blogger Pemula
    Top 5 SEO Tips Terbaik Untuk Blogger Pemula
    Mulai dengan Dasar SEO Jika dunia optimasi mesin pencari adalah baru bagi Anda, ada beberapa SEO tips yang akan saya berikan yang  And...
  • Program Matlab rotasi gambar 90 derajat
    function rotasi90ka %rotasi citra 90 searah jarum jam A=imread('cameraman.tif'); d=A; [baris kolom]=size(A); for i=1:baris;   ...
  • Pengenalan Pemrograman HTML
    Pengenalan Pemrograman HTML
    HTML adalah kepanjangan dari Hyper Text Markup Language     HTML adalah markup language     tags menjelaskan konten dokumen     HTML docume...
  • Listing Program Java Data Nilai Mahasiswa dengan Array
    import java.util.Scanner; public class DataMahasiswacob{ public static void main(String[] args){ int row, kolom; int tambah; String[]...

Author

Fadhilah Amal
Lihat profil lengkapku

Label

  • Blog
  • Download
  • Download Software
  • HTML
  • Internet
  • Kesehatan
  • Progam Mysql
  • Program C++
  • Program Java
  • Program Matlab
  • Program Shell
  • SEO
  • Tema Windows
  • Web Programming

Formulir Kontak

Nama

Email *

Pesan *

Flickr

Copyright © 2014 Tips blog, tips internet dan tips komputer | TIPSKOMPUTERKU All Right Reserved