This is default featured slide 1 title

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

This is default featured slide 2 title

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

This is default featured slide 3 title

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

This is default featured slide 4 title

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

This is default featured slide 5 title

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

Epsxe 1.70

Assalamuallaikum wr wb..
Hay gan mungkin yang mau nyoba maen game PS 1 di PC or laptop,ini ane kasih emulatornya gan.
silahkan di sedot aja gan filenya...

Download Epsxe 1.70

Penjumlahan dua buah matris

Assalamuallaikum wr wb
saya masih posting tentang pemrograman C++ yang berhubungan dengan adanya permintaan dari teman.

Penjumlahan duan buah matriks

#include <iostream.h>

#include <conio.h>

#include <iomanip.h>

int A[2][2],B[2][2],C[2][2];

void inputmatriksA()

{cout<<"Matriks A"<<endl;

for (int i=0;i<2;i++)

for (int j=0;j<2;j++)

{cout<<"Elemen A ["<<(i+1)<<","<<(j+i)<<"]:";

cin>>A[i][j];}}