İki boyutlu diziler / Eclipse Diziler Ders 2

Saygılar arkadaşlar , Bu dersimizde diziler konumuzun ikinci dersi olan iki boyutlu diziler konumuzu anlatmaya çalıştım . Aldığım yorumlara göre günde 3 er video isteği var . Onun için günde 3 video çekmeye çalışacağım bundan sonra . Lütfen anlamadığınız yerleri tekrar dinleyin . Özet olarak tüm dersleri tekrardan da dinliyebilirsiniz . İyi dersler .

  • Temelimizi ne kadar güzel atarsak ileride o kadar başarılı oluruz ...

Dear friends, In this lesson, I tried to describe the position of the two-dimensional series, the second lesson of the series position. According to my comments, there are 3 video requests a day. I will try to shoot 3 videos a day for him. Please listen to places you do not understand again. In summary, you can listen to all the lessons from the same time. Good lectures.

  • The better we beat our base, the better we will be in the future.

Bu dersimizin Kodları :



package com.yazilimvideo;

public class IkiBoyutluDiziler {

    
    public static void main(String[] args) {

        int sayiIkiBoyutlu[][] = new int [3][4]; //i j

        
        for(int i = 0; i<3 ; i++){

            for (int j = 0; j <4 ; j++) {

                sayiIkiBoyutlu[i][j] = i+j*2;

            }

        }

        
        
        
        for(int i = 0; i<3 ; i++){

            for (int j = 0; j <4 ; j++) {

                System.out.print( sayiIkiBoyutlu[i][j] + " ");        
            }

            System.out.println(); 
        }
        
        
    }

}

Github :

Youtube :

Önceki Derslerimiz ( Previous Lessons ) :

1- https://utopian.io/utopian-io/@ilginc/eclipse-selam-genel-egitime-baslangic
2- https://utopian.io/utopian-io/@ilginc/eclipse-java-karakter-tipi-ve-sayisal-tipler
3- https://utopian.io/utopian-io/@ilginc/eclipse-boolen-tipi-anlatimim
4- https://utopian.io/utopian-io/@ilginc/degiskenler-nasil-deklare-edilir
5- https://utopian.io/utopian-io/@ilginc/dinamiklik-deger-atamasi-eclipse
6- https://steemit.com/utopian-io/@ilginc/kapsam-alanlari-ve-degiskenlerin-yasam-suereleri
7- https://steemit.com/utopian-io/@ilginc/tip-doenuesuemleri-degiskenler-son-konumuz
8- https://steemit.com/utopian-io/@ilginc/tek-boyutlu-diziler-diziler-konusu-baslangic
9- This lesson.



Posted on Utopian.io - Rewarding Open Source Contributors

H2
H3
H4
3 columns
2 columns
1 column
Join the conversation now
Logo
Center