Home » » penjumlahan matriks menggunakan PBO

penjumlahan matriks menggunakan PBO


Membuat penjumlahan array menggunakan pbo

pertama buatlah pacpages, dilanjutkan dengan class seperti gambar di bawah ini :

membuat Matriks A :




/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package tugass;

/**
 *
 * @author MOHAMMAD RAMLI
 * NIM     1310651201
 */
public class matriksA {
    int matriksA [][]= {{4,8},{7,3}};
    public void cetak (){
         System.out.println("matriks A");
        
        for (int i = 0; i < 3; i++) {
            for (int j = 0; j < 3; j++) {
                
                System.out.print(matriksA[i][j]+" ");                
            }
            System.out.println("");            
        }

    }
}


 
membuat matriks B :
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package tugass;

/**
 *
 * @author MOHAMMAD RAMLI
 * NIM     1310651201
 */
public class matriksB extends matriksA {
    int matriksB [][]= {{8,3},{9,2}};
    
    @Override
        public void cetak (){
                System.out.println("matriks B");
        for (int i = 0; i < 2; i++) {
            for (int j = 0; j < 2; j++) {
                System.out.print(matriksB[i][j]+" ");                
            }
            System.out.println("");
            
        }
    }
}
membuat penjumlahan matriks A dan Matriks B

/*
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package tugass;

/**
 *
 * @author MOHAMMAD RAMLI
 * NIM     1310651201
 */
public class penjumlahan extends matriksB {
    int jumlah [][]= new int [2][2];
    @Override
    public void cetak (){
        System.out.println("hasil penjumlahan");
        for (int i = 0; i < 2; i++) {
            for (int j = 0; j < 2; j++) {
                jumlah[i][j]=matriksA[i][j]+ matriksB [i][j];
                System.out.print(jumlah[i][j]+" ");
                
            }
            System.out.println("");
            
        }
        System.out.println("Berhasil berhasil HOree..");
    }
}

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package tugass;

/**
 *
 * @author MOHAMMAD RAMLI
 * NIM     1310651201
 */
public class hasil {
    private static penjumlahan penjumlahan;
    public static void main(String[] args) {
        penjumlahan = new penjumlahan();
        penjumlahan.cetak();
    }
   
}

hasil output penjumlahan :


sekian artikel yang saya buat, semoga bermanfaat bagi kita semua

0 Komentar Sahabat:

Post a Comment

Jadilah yang pertama...

Facebook

 
Support : Copyright © 2013. Mohammad Ramli - All Rights Reserved
Proudly powered by Blogger