About

This is default featured slide 1 title

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

Senin, 25 Februari 2013

Perkalian C++ Menggunakan Class

#include <cstdlib> #include <iostream> using namespace std; class Lingkaran{       public:              void input();              int proses();              void output();       private :               int bil1, bil2;        ...