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
#include<conio.h> #include<iostream.h> #include<stdio.h> #include<ctype.h> #include<iomanip.h> #define M...
Read More
Listing Program C++ Nested Structure
#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
#include<conio.h> #include<iostream.h> main() { struct { char nim[5]; char nama[15]; float nilai; } mahasiswa; clrsc...
Read More
Listing Program C++ Stack
#include <iostream.h> #include <conio.h> //deklarasi 'STACK' dengan struct dan array struct STACK { int data[...
Read More
Listing Program C++ Search Sequential 2
#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
#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
#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
#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
#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
#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
#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
#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
#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
#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
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
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
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
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
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
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
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)