티스토리 뷰

SW/C#

[ 초보자를 위한 C# 200제 ] C#_008

김아진 2018. 3. 22. 13:00

[ 초보자를 위한 C# 200제 ] C#_008


using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;


namespace Project_008

{

    class Program

    {

        static void Main(string[] args)

        {

            /* 기본 산술 연산자(operator)

             * double 타입일 때 주의할 연산자: /, %

             * ex) 44.55/9.9 = 4.5  (배수, 나머지가 0)

             *     44.55%9.9 = 4.95 (몫이 정수로 4, 나머지 4.95)

             */


            Console.WriteLine("두 수를 입력하세요. ");

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

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


            int c = a + b; // 21+9=30

            int d = a - b; // 21-9=12

            int e = a * b; // 21*9=189

            int f = a / b; // 21/9=2

            int g = a % b; // 21%9=3


            Console.WriteLine("덧셈:{0}+{1}={2}", a, b, c);

            Console.WriteLine("뺄셈:{0}-{1}={2}", a, b, d);

            Console.WriteLine("곱셈:{0}*{1}={2}", a, b, e);

            Console.WriteLine("나눗셈:{0}/{1}={2}", a, b, f);

            Console.WriteLine("나머지:{0}%{1}={2}", a, b, g);



        }

    }

}


[ 결과 ]



댓글