728x90
SMALL

// 標準入力から2次元配列

using System;

 

public class Lesson05

{

    public static void Main()

    {

int number = int.Parse(Console.ReadLine());

Console.WriteLine(number);

 

    }

}

 

//표준 입력으로부터 데이터를 읽어오는 코드

 

///

// 標準入力から2次元配列

using System;

 

public class Lesson05

{

    public static void Main()

    {

int number = int.Parse(Console.ReadLine());

//읽어서 number 변수에 대입한다.

 

Console.WriteLine(number);

String[][] table = new string[number][];

 

for (int i =0; i<number; i++)

{

    table[i] = Console.ReadLine().Split(' ');

}

 

foreach(string[] line in table)

{

    foreach(string dot in line)

    {

        if(dot == "1")

        {

            Console.Write("#");

        }

        else

        {

            Console.Write(" ");

        }

        //Console.Write(dot);

    }

    Console.WriteLine();

} //2차원 배열을 출력한다

 

    }

}

//dot 그림

0 0 0 0 1 1 1 0 0 0 0 0 0 1 1 1

0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0

0 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0

1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1

1 0 0 1 1 1 0 0 0 1 1 1 0 0 0 1

1 1 0 0 0 0 1 1 0 0 0 0 0 0 1 1

0 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0

/////////

 

///

    ###      ###

   ###     ### 

  ############ 

##            ##

#  ###   ###   #

##    ##      ##

  ############

///

////

// 標準入力から文字のドットデタを

using System;

 

public class Lesson05

{

    public static void Main()

    {

        int n = int.Parse(Console.ReadLine());

 

        string[][] table = new string[n][];

        for (int i = 0; i < n; i++)

        {

            // ここに、標準入力から2次元配列に代入するコドを書く

table[i] = Console.ReadLine().Split(' ');

        }

 

        // 2次元配列から文字を出力

        for (int i = 0; i < table.Length; i++)

        {

            for (int j = 0; j < table[i].Length; j++)

            {

                if (table[i][j] == "1")

                {

                    Console.Write("#");

                }

                else

                {

                    Console.Write(" ");

                }

            }

            Console.WriteLine();

        }

    }

}

////////////

 

/////////

입력

6

0 0 1 1 0 0

0 1 0 0 1 0

1 0 0 0 0 1

1 1 1 1 1 1

1 0 0 0 0 1

1 0 0 0 0 1

/////

   ## 

  #  #

 #    #

######

#   #

#   #  

 

 

728x90

설정

트랙백

댓글