Java와 C#의 실제 코드 비교 (jagged array)
직접 만들다
jagged array 만들기
// Program to demonstrate 2-D jagged array in Java
class Main
{
public static void main(String[] args)
{
// Declaring 2-D array with 2 rows
int arr[][] = new int[2][];
// Making the above array Jagged
// First row has 3 columns
arr[0] = new int[3];
// Second row has 2 columns
arr[1] = new int[2];
// Initializing array
int count = 0;
for (int i=0; i<arr.length; i++)
for(int j=0; j<arr[i].length; j++)
arr[i][j] = count++;
// Displaying the values of 2D Jagged array
System.out.println("Contents of 2D Jagged Array");
for (int i=0; i<arr.length; i++)
{
for (int j=0; j<arr[i].length; j++)
System.out.print(arr[i][j] + " ");
System.out.println();
}
}
}
// Program to demonstrate 2-D jagged array in C#
using System;
class Program
{
static void Main()
{
// Declaring 2-D array with 2 rows
int[][] arr;
arr = new int[2][];
// Making the above array Jagged
// First row has 3 columns
arr[0] = new int[3];
// Second row has 2 columns
arr[1] = new int[2];
// Initializing array
int count = 0;
for (int i=0; i<arr.Length; i++)
for(int j=0; j<arr[i].Length; j++)
arr[i][j] = count++;
// Displaying the values of 2D Jagged array
Console.WriteLine("Contents of 2D Jagged Array");
for (int i=0; i<arr.Length; i++)
{
for (int j=0; j<arr[i].Length; j++)
Console.WriteLine(arr[i][j] + " ");
Console.WriteLine();
}
}
}
'IT > IT 일반' 카테고리의 다른 글
[디렉토리] IT 정보 모음 (0) | 2019.07.18 |
---|---|
언어별 예상 면접 문제와 시간복잡도 정의 (0) | 2019.07.15 |
개발 관련 단상들 (0) | 2019.04.19 |
잉크젯 프린터 노즐막힘 예방 이렇게 하면된다! (0) | 2017.10.12 |
안드로이드 개발 방법 간단히 알아보기 (0) | 2017.09.30 |
개발자 떡실신 버전 과연 그 진실은? 최근 버전 (0) | 2017.09.10 |
개발자 떡실신 버전 과연 그 진실은? 옛버전 (0) | 2017.09.10 |
가가라이브 채팅 예제 (0) | 2017.05.27 |
개발 관련 정보들 (0) | 2017.05.17 |
C / C++ / C# (0) | 2017.05.17 |