1 / 13

Pemrograman Dasar

Pemrograman Dasar. Array 2 dimensi. Mendefinisikan Array 2 D. Array dapat dibuat berdimensi dua. Array 2 dimensi mempunyai dua indeks / subscript. Contoh: int posisi [10][10];. Array 2 dimensi. Dalam membayangkan array 2 dimensi, sering digunakan istilah baris dan kolom atau x dan y.

Download Presentation

Pemrograman Dasar

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Pemrograman Dasar Array 2 dimensi

  2. Mendefinisikan Array 2 D • Array dapat dibuat berdimensi dua. • Array 2 dimensi mempunyai dua indeks / subscript. • Contoh: • int posisi [10][10];

  3. Array 2 dimensi • Dalam membayangkan array 2 dimensi, sering digunakan istilah baris dan kolom atau x dan y. • int angka[6][3];

  4. Penggunaan Array 2 dimensi • Array berdimensi dua dapat digunakan untuk berbagai keperluan, terutama dalam hal pemetaan yang berhubungan dengan koordinat. Misalkan data jumlah pohon dalam koordinat tertentu, atau warna pixel di layar. • Selain itu, array juga dapat digunakan untuk menampilkan data multidimensi.

  5. Penggunaan Array 2 dimensi • Untuk langsung mengisi nilai array dua dimensi saat definisi array: • int kelulusan[3][4]= { {35,45,80,120}, {100,110,70,101}, {10,15,20,17} • }

  6. Penggunaan Array 2 dimensi • Atau: • int kelulusan[4][3]= { {35,100,10}, {45,110,15}, {80,70,20}, {120,101,17} • }

  7. Contoh • int kelulusan[3][4]= { • {35,45,80,120}, • {100,110,70,101}, • {10,15,20,17} • }; • string jurusan[3] = { • "Teknik Informatika", • "Manajemen Informasi", • "Teknik Komputer" • }; • int tahun[4] = {1992,1993,1994,1995};

  8. Contoh • cout<<setw(20)<<"Jurusan"; • cout<<setw(6)<<"1992"; • cout<<setw(6)<<"1993"; • cout<<setw(6)<<"1994"; • cout<<setw(6)<<"1995"<<endl; • for (int i=0; i<=2; i++) { • cout<<setw(20)<<jurusan[i]; • for (int j=0; j<=3; j++) { • cout<<setw(6)<<kelulusan[i][j]; • } • cout<<endl; • }

  9. Latihan • Buat program untuk menampilkan matriks berukuran 3 x 3.

  10. Latihan • Buat program untuk menginput sekaligus menampilkan matriks berukuran 3 x3.

  11. Latihan • Buat program untuk menjumlahkan dua buah matriks.

  12. Latihan • Buat program untuk mengalikan dua buah matriks.

  13. Thank You for your attention • Thanks to: • Pemrograman C++ by Abdul Kadir • Yoannita S.Kom & Hermawan S.Kom Sumber slide • http://www.tzuchi.or.id/perenungan.php?page=1  Renungan

More Related