Angelina Veni
Harus dikuasai :
- deklarasi array 1 dimensi :
nama_array: array [batas_bawah..batas_atas] of tipe_data;
ar : array[0..100,0..100] of integer;
- deklarasi array 2 dimensi :
nama_array : array[batas_bawah1..batas_atas1,batas_bawah2..batas_atas2] of tipe_data;
ar: array[0..100,0..100] of integer;
- inisialisasi matriks:
fillchar(ar,sizeof(ar),0);
- membaca matriks 2 dimensi:
for i := 1 to baris do begin
for j := 1 to kolom do begin
read(ar[i,j]);
end;
readln;
end;
Latihan Contest :
- BNPCHS 2008 Problem D : Kelas Bermasalah
- OSN 2007 Sesi 2 nomor 5,6
- OSN 2009 Sesi 2 nomor 2, 3, 6
- OSN 2007 Sesi 3 : Pemberat
- OSN 2008 Sesi 3 : Bola dan Gelas
- OSN 2005 : Kata Spiral [V]
- JOINTS 2008 Final : Submatriks [V]
- BNPCHS 2007 : Lining Up
Latihan Online Judge:
- UVA 10050 – Hartals [V]
- UVA 591 – Box of Bricks [V]
- UVA 10038 – Jolly Jumpers
- UVA 11185 – Ternary [V]
- Z-Trening – Bogatas [V]
3 Responses to Array
Leave a Reply Cancel reply
On the Web
Recent Comments
- Peter on US College Application Essay
- Peter on US College Application Essay
- angelinavj on US College Application Essay
- Peter on US College Application Essay
- didut on Bahasa Indonesia dan Lokalisasi
- widya on Programming
- Vederis Leunardus on Array
- nissa on US College Application Essay
- Rhemed on Rekursi
- Anonymous on Programming
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License (you're required to link to this blog whenever you republish my content).
ada beberapa link soal array diatas yang rusak,
mohon diperhatikan
ka,contoh array dimensi satu salah tuh,hehe
mau tanya kalau array 1 dimensi
bukannya kayak gininya
ar : array [1..100] of integer;