This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Selasa, 09 Oktober 2012

Perbedaan dan kesamaan array statis dan dinamis

Khususnya pada bagian data (private/protected data member)Detail implementasi sebagai berikut; PROGRAM COPASNYA!!! #include <cstdlib> #include <iostream> #define maks 5 using namespace std; class Array1D{       friend ostream& operator<<(ostream&, const Array1D&);       friend istream& operator>>(istream&, Array1D&);        ...

PROGRAM MENENTUKAN KUADRAN KOORDINAT SUATU TITIK (netbeans)

/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package postest2; /** * * @author JustVicky */ public class Titik { private String x; private String y; public Titik(){} public Titik(String x, String y){ this.x = x; this.y = y; } public void setX(String x){ this.x = x; } public String getX(){ return x; } public void setY(String y){ this.y = y; } public String getY(){ ...