#30 jagged and 3D Array in Java

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ม.ค. 2025

ความคิดเห็น • 21

  • @ayashazhar5340
    @ayashazhar5340 10 หลายเดือนก่อน +7

    had a hard time finding a proper video on jagged array and how to update it . thanks bro

  • @sherislam1037
    @sherislam1037 27 วันที่ผ่านมา

    You are amazing Telusku,the way you have explained the concept of Array,You deserve appreciation.You nailed it bro👏❣

  • @DevilGaming-bl1og
    @DevilGaming-bl1og 5 หลายเดือนก่อน +1

    In first for loop instead of i

  • @IshmaelSmart-l8v
    @IshmaelSmart-l8v 7 หลายเดือนก่อน

    I like the way you explain Boss, thanks 😊😊

  • @29balapraveen
    @29balapraveen ปีที่แล้ว +1

    Can we do jagged array of 2nd dimension in 3 dimensional array?

  • @anilkumargangarapu01
    @anilkumargangarapu01 11 หลายเดือนก่อน +1

    hii, how can we assign fixed values of our own to arrays with different sizes,

    • @anilkumargangarapu01
      @anilkumargangarapu01 11 หลายเดือนก่อน +2

      without using random values,

    • @ghmlp-xyht3r
      @ghmlp-xyht3r 4 หลายเดือนก่อน

      @@anilkumargangarapu01
      You have to do it in this way (eg. for 2x3 array):
      array[0][0] = 23;
      array[0][1]=19;
      array[0][2]=53;
      array[1][0] = 08;
      array[1][1]=91;
      array[1][2]=63;
      i.e, you have to assign values manually :p

  • @manmohankatyayan5014
    @manmohankatyayan5014 ปีที่แล้ว +7

    sir how can i get notes

  • @SowjanyaKadiveti
    @SowjanyaKadiveti 4 หลายเดือนก่อน +3

    i had tried much more complex one three arrays
    class demo
    {
    public static void main(String[] args)
    {
    int num[][][]= new int[3][2][];
    num[0][0]= new int[10];
    num[0][1]= new int[6];
    num[1][0]= new int[2];
    num[1][1]= new int [5];
    num[2][0]=new int[8];
    num[2][1]=new int[8];

    for(int i=0;i

  • @lisav9566
    @lisav9566 ปีที่แล้ว

    Thanks!

  • @puruagni1927
    @puruagni1927 8 หลายเดือนก่อน

    Why are you not updating VS Code? Please update VS Code.

  • @AdhilMhmdVK
    @AdhilMhmdVK 2 ปีที่แล้ว +5

    Three dimensional array with proper example...i couldnt understand this one.

  • @purnimanaskar2671
    @purnimanaskar2671 11 หลายเดือนก่อน

    // Online Java Compiler
    // Use this editor to write, compile and run your Java code online
    public class Demo {
    public static void main(String[] args)
    {

    int nums[][][]=new int [3][4][5]; // three dimensional
    for(int i=0;i

  • @thelivereactions
    @thelivereactions 11 หลายเดือนก่อน

    This video cant understand , where does math & *10 come from!

    • @Bjorn-vh2px
      @Bjorn-vh2px 8 หลายเดือนก่อน +3

      // Math is used for generating random numbers
      And *10 used for multiplying those number.
      Once watch his two dimensional array video 👍

    • @karthikgururajan1131
      @karthikgururajan1131 2 หลายเดือนก่อน

      watch his previous video once and then come back to 3D arrays

  • @RameshMaity90
    @RameshMaity90 8 หลายเดือนก่อน

    public class Array {
    public static void main(String[] args) {
    int num1[]=new int[3];
    int num[][]=new int[3][4];
    for(int i=0;i

  • @dashtech1387
    @dashtech1387 9 หลายเดือนก่อน +3

    Not understand