Rabu, 26 November 2014

Contoh Program Penjumlahan Matriks C++

Program penjumlahan matriks C++
Program yang saya share berikut sudah sederhana. Baiklah langsung saja seperti berikut ini..

program penjumlahan matriks C++

Berikut code C++ nya :

#include <iostream.h>
#include <conio.h>
#include <iomanip.h>
int main ()
{
awal :
clrscr();
int x, y, a[3][3], b[3][3];
cout<<"PROGRAM PENJUMLAHAN MATIKS"<<endl;
cout<<"--------------------------"<<endl;
cout<<"MATRIKS A"<<endl;
for(x=0;x<3;x++)
{
for(y=0;y<3;y++)
{
cout<<"Elemen ke - "<<x<<"."<<y<<" : "; cin>>a[x][y]; }}
for(x=0;x<3;x++)
{
for(y=0;y<3;y++)
{
cout<<setw(6)<<a[x][y];
}
cout<<endl; }
cout<<endl;
cout<<"MATRIKS B"<<endl;
for(x=0;x<3;x++)
{
for(y=0;y<3;y++)
{
cout<<"Elemen ke - "<<x<<"."<<y<<" : "; cin>>b[x][y]; }}
for(x=0;x<3;x++)
{
for(y=0;y<3;y++)
{
cout<<setw(6)<<b[x][y];
}
cout<<endl; }
cout<<endl;
cout<<"HASIL PENJUMLAHAN MATRIKS"<<endl;
for(x=0;x<3;x++)
{
for(y=0;y<3;y++)
{
cout<<setw(6)<<a[x][y]+b[x][y];
}
cout<<endl;
}
cout<<endl;
char q;
cout<<"ULANGI MATRIKS : (Y/N) ??" ;
cin>>q;
if(q=='Y')
goto awal;
else
if(q=='N')
goto akhir;
akhir :
cout<<"--------------------------"<<endl;
cout<<"putramahayana.blogspot.com";
getch();
return 0;
}

sumber