'전체 글'에 해당되는 글 43건

  1. 2019.09.27 백준 10998번
  2. 2019.09.27 백준 10172번
  3. 2019.09.27 백준 2588번
  4. 2019.09.27 백준 10171번
  5. 2019.09.27 백준 2739번
  6. 2019.09.27 백준 10817번

백준 10998번

Console(콘솔)/알고리즘 2019. 9. 27. 12:52

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

            string str = Console.ReadLine();

            string[] arr = str.Split(' ');

            int a = int.Parse(arr[0].ToString());

            int b = int.Parse(arr[1].ToString());

            int c = a * b;

            Console.WriteLine(c);

        }

    }

}

 

 

'Console(콘솔) > 알고리즘' 카테고리의 다른 글

백준 10869번  (0) 2019.09.27
백준 1008번  (0) 2019.09.27
백준 10172번  (0) 2019.09.27
백준 2588번  (0) 2019.09.27
백준 10171번  (0) 2019.09.27
:

백준 10172번

Console(콘솔)/알고리즘 2019. 9. 27. 12:42

 

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

            Console.WriteLine("|\\_/|");

            Console.WriteLine("|q p|   /}");

            Console.WriteLine("( 0 )\"\"\"\\");

            Console.WriteLine("|\"^\"`    |");

            Console.WriteLine("||_/=\\\\__|");

 

        }

    }

}

 

 

'Console(콘솔) > 알고리즘' 카테고리의 다른 글

백준 1008번  (0) 2019.09.27
백준 10998번  (0) 2019.09.27
백준 2588번  (0) 2019.09.27
백준 10171번  (0) 2019.09.27
백준 2739번  (0) 2019.09.27
:

백준 2588번

Console(콘솔)/알고리즘 2019. 9. 27. 12:30

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

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

            string B = Console.ReadLine();

            int a = int.Parse(B[0].ToString());

            int b = int.Parse(B[1].ToString());

            int c = int.Parse(B[2].ToString());

            int C = int.Parse(B);

            int aa = A * c;

            int ab = A * b;

            int ac = A * a;

            int ad = A * C;

            Console.WriteLine(aa);

            Console.WriteLine(ab);

            Console.WriteLine(ac);

            Console.WriteLine(ad);

 

        }

    }

}

 

 

'Console(콘솔) > 알고리즘' 카테고리의 다른 글

백준 10998번  (0) 2019.09.27
백준 10172번  (0) 2019.09.27
백준 10171번  (0) 2019.09.27
백준 2739번  (0) 2019.09.27
백준 10817번  (0) 2019.09.27
:

백준 10171번

Console(콘솔)/알고리즘 2019. 9. 27. 11:42

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

            Console.WriteLine("\\    /\\");

            Console.WriteLine(" )  ( ')");

            Console.WriteLine("(  /  )");

            Console.WriteLine(" \\(__)|");

            

           

        }

    }

}

 

 

'Console(콘솔) > 알고리즘' 카테고리의 다른 글

백준 10172번  (0) 2019.09.27
백준 2588번  (0) 2019.09.27
백준 2739번  (0) 2019.09.27
백준 10817번  (0) 2019.09.27
백준 1330번  (0) 2019.09.27
:

백준 2739번

Console(콘솔)/알고리즘 2019. 9. 27. 11:37

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

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

            for(int i = 1; i<10; i++)

            {

                Console.WriteLine($"{input} * {i} = {input * i}");

            }

        }

    }

}

 

 

'Console(콘솔) > 알고리즘' 카테고리의 다른 글

백준 2588번  (0) 2019.09.27
백준 10171번  (0) 2019.09.27
백준 10817번  (0) 2019.09.27
백준 1330번  (0) 2019.09.27
백준 1110번  (0) 2019.09.27
:

백준 10817번

Console(콘솔)/알고리즘 2019. 9. 27. 11:32

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

            string arr = Console.ReadLine();

            string[] art = arr.Split(' ');

            int a = int.Parse(art[0].ToString());

            int b = int.Parse(art[1].ToString());

            int c = int.Parse(art[2].ToString());

 

            bool A = a >= b && a >= c && b >= c;

            bool B = c >= b && c >= a && b >= a;

            bool C = b >= a && b >= c && a >= c;

            bool D = c >= a && c >= b && a >= b;

            bool E = a >= c && a >= b && c >= b;

            bool F = b >= c && b >= a && c >= a;

            if (A)

            {

                Console.WriteLine(b);

            }

            else if (B)

            {

                Console.WriteLine(b);

            }

            else if (C)

            {

                Console.WriteLine(a);

            }

            else if (D)

            {

                Console.WriteLine(a);

            }

            else if (E)

            {

                Console.WriteLine(c);

            }

            else if (F)

            {

                Console.WriteLine(c);

            }

 

 

        }

    }

}

 

 

Colored by Color Scripter

'Console(콘솔) > 알고리즘' 카테고리의 다른 글

백준 10171번  (0) 2019.09.27
백준 2739번  (0) 2019.09.27
백준 1330번  (0) 2019.09.27
백준 1110번  (0) 2019.09.27
백준 10951번  (0) 2019.09.26
: