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

  1. 2019.09.30 method문 사용
  2. 2019.09.30 백준 8393번
  3. 2019.09.27 enum 문제
  4. 2019.09.27 백준 10430번
  5. 2019.09.27 백준 10869번
  6. 2019.09.27 백준 1008번

method문 사용

Console(콘솔)/실습 2019. 9. 30. 13:10

입력된 시간값보다 45분 일찍 알람 맞추기!

using System;

 

namespace Syntax14

{

    class App

    {

        public App()

        {

            

            Alarm(1048);

        }

 

        

        public void Alarm(int a, int b)

        {

            int c = b - 45;

            int d = 60 - (-c);

            if (a >= 0 && b > 45)

            {

                Console.WriteLine($"{a} {c}");

            }

 

            else if (a > 0 && b <= 45)

            {

                Console.WriteLine($"{a - 1} {60 - (-c)}");

            }

            else if (a == 0 && b < 45)

            {

                Console.WriteLine($"23 {d}");

            }

        }

    }

}

 

 

 

 

'Console(콘솔) > 실습' 카테고리의 다른 글

class mathod  (0) 2019.10.02
Claas를 이용한 버거 만들기  (0) 2019.10.01
enum 문제  (0) 2019.09.27
두수를 입력받아 변수에 담기  (0) 2019.09.26
switch 예제문  (0) 2019.09.26
:

백준 8393번

Console(콘솔)/알고리즘 2019. 9. 30. 09:11

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace Syntax14

{

    class Program

    {

        static void Main(string[] args)

        {

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

            int sum = 0;

            

 

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

            {

                sum += i;

                

              

                

            }

            Console.WriteLine(sum);

            

            

        }

    }

}

 

 

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

백준 2438번 문제  (0) 2019.09.30
백준 10430번  (0) 2019.09.27
백준 10869번  (0) 2019.09.27
백준 1008번  (0) 2019.09.27
백준 10998번  (0) 2019.09.27
:

enum 문제

Console(콘솔)/실습 2019. 9. 27. 16:44

using System;

 

 

namespace Syntax12

{

    class Program

    {

        enum Camp { Alliance,Horde }

        enum TribeAlliance{Human, Dwarf }

        enum TribeHorde {Orc, Undead }

        enum ClassHuman {Warlock,Priest }

        enum ClassDwarf {Monk,Hunter }

        enum ClassOrc {Deathknight,Warrior }

        enum ClassUndead {Wizaed, Theif }

        static void Main(string[] args)

        {

            Console.Write("[Alliance, Horde]진영을 선택해주세요.");

            Console.ForegroundColor = ConsoleColor.Green;

            string A = Console.ReadLine();

            Console.ForegroundColor = ConsoleColor.White;

            

 

            if (A == Camp.Alliance.ToString())

            {

                   

                Console.Write("[Human,Dwarf]종족을 선택해주세요.");

                Console.ForegroundColor = ConsoleColor.Green;

                string B = Console.ReadLine();

                Console.ForegroundColor = ConsoleColor.White;

                if (B == TribeAlliance.Human.ToString())

                {

                    Console.Write("[Warlock, Priest]직업을 선택해주세요.");

                    Console.ForegroundColor = ConsoleColor.Green;

                    string C = Console.ReadLine();

                    Console.ForegroundColor = ConsoleColor.White;

                    if (C == ClassHuman.Warlock.ToString())

                    {

                        Console.ForegroundColor = ConsoleColor.Green;

                        Console.WriteLine($"{A}, {B}, {C}");

                        Console.ForegroundColor = ConsoleColor.White;

                    }

                    else

                    {

                        Console.ForegroundColor = ConsoleColor.Green;

                        Console.WriteLine($"{A}, {B}, {C}");

                        Console.ForegroundColor = ConsoleColor.White;

                    }

                }

                else if (B == TribeAlliance.Dwarf.ToString())

                {

                    Console.Write("[Monk, Hunter]직업을 선택해주세요.");

                    Console.ForegroundColor = ConsoleColor.Green;

                    string C = Console.ReadLine();

                    Console.ForegroundColor = ConsoleColor.White;

                    if (C == ClassDwarf.Monk.ToString())

                    {

                        Console.ForegroundColor = ConsoleColor.Green;

                        Console.WriteLine($"{A}, {B}, {C}");

                        Console.ForegroundColor = ConsoleColor.White;

                    }

                    else

                    {

                        Console.ForegroundColor = ConsoleColor.Green;

                        Console.WriteLine($"{A}, {B}, {C}");

                        Console.ForegroundColor = ConsoleColor.White;

                    }

                }               

                }

            else if (A == Camp.Horde.ToString())

            {

                

                Console.Write("[Orc,Undead]종족을 선택해주세요.");

                Console.ForegroundColor = ConsoleColor.Green;

                string D = Console.ReadLine();

                Console.ForegroundColor = ConsoleColor.White;

                if (D == TribeHorde.Orc.ToString())

                {

                    

                    Console.Write("[Deathknight, Warrior]직업을 선택해주세요.");

                    Console.ForegroundColor = ConsoleColor.Green;

                    string C = Console.ReadLine();

                    Console.ForegroundColor = ConsoleColor.White;

                    if (C == ClassOrc.Deathknight.ToString())

                    {

                        Console.ForegroundColor = ConsoleColor.Green;

                        Console.WriteLine($"{A}, {D}, {C}");

                        Console.ForegroundColor = ConsoleColor.White;

                    }

                    else

                    {

                        Console.ForegroundColor = ConsoleColor.Green;

                        Console.WriteLine($"{A}, {D}, {C}");

                        Console.ForegroundColor = ConsoleColor.White;

                    }

                }

                else if (D == TribeHorde.Undead.ToString())

                {

                    Console.Write("[Wizaed, Theif]직업을 선택해주세요.");

                    Console.ForegroundColor = ConsoleColor.Green;

                    string F = Console.ReadLine();

                    Console.ForegroundColor = ConsoleColor.White;

                    if (F == ClassUndead.Wizaed.ToString())

                    {

                        Console.ForegroundColor = ConsoleColor.Green;

                        Console.WriteLine($"{A}, {D}, {F}");

                        Console.ForegroundColor = ConsoleColor.White;

                    }

                    else

                    {

                        Console.ForegroundColor = ConsoleColor.Green;

                        Console.WriteLine($"{A}, {D}, {F}");

                        Console.ForegroundColor = ConsoleColor.White;

 

                    }

                }

            }

 

        }

    }

}

 

 

'Console(콘솔) > 실습' 카테고리의 다른 글

Claas를 이용한 버거 만들기  (0) 2019.10.01
method문 사용  (0) 2019.09.30
두수를 입력받아 변수에 담기  (0) 2019.09.26
switch 예제문  (0) 2019.09.26
숫자 입력, 날짜 출력  (0) 2019.09.26
:

백준 10430번

Console(콘솔)/알고리즘 2019. 9. 27. 13:23

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

            string input = Console.ReadLine();

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

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

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

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

            Console.WriteLine((a+b)%c);

            Console.WriteLine((a%c + b%c) % c);

            Console.WriteLine((a*b) % c);

            Console.WriteLine((a%c * b%c) % c);

        }

    }

}

 

 

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

백준 2438번 문제  (0) 2019.09.30
백준 8393번  (0) 2019.09.30
백준 10869번  (0) 2019.09.27
백준 1008번  (0) 2019.09.27
백준 10998번  (0) 2019.09.27
:

백준 10869번

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

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

            string input = Console.ReadLine();

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

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

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

            Console.WriteLine(a +b);

            Console.WriteLine(a - b);

            Console.WriteLine(a*b);

            Console.WriteLine(a/b);

            Console.WriteLine(a%b);

 

 

 

 

        }

    }

}

 

 

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

백준 8393번  (0) 2019.09.30
백준 10430번  (0) 2019.09.27
백준 1008번  (0) 2019.09.27
백준 10998번  (0) 2019.09.27
백준 10172번  (0) 2019.09.27
:

백준 1008번

Console(콘솔)/알고리즘 2019. 9. 27. 13:09

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

            string input = Console.ReadLine();

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

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

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

            

            

            Console.WriteLine(a/b);

        }

    }

}

 

 

 

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

백준 10430번  (0) 2019.09.27
백준 10869번  (0) 2019.09.27
백준 10998번  (0) 2019.09.27
백준 10172번  (0) 2019.09.27
백준 2588번  (0) 2019.09.27
: