프로그램/C# - Study / / 2010. 9. 8. 17:23

3D - if문 활용

반응형


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Ex03ControlStatement
{
    class Program
    {
        static void Main(string[] args)
        {
            // 계산기 ( +, - , * , / , % )
            // 1. 데이터입력 : 숫자, 연산자, 숫자 순서
            // 2. 연산 처리
            // 3. 결과 출력

            Console.Write("첫번째 숫자를 입력하세요 : ");
            int operand1 = int.Parse(Console.ReadLine());

            Console.Write("연산자를 입력하세요 : ");
            string op = Console.ReadLine();

            Console.Write("두번째 숫자를 입력하세요 : ");
            int operand2 = int.Parse(Console.ReadLine());

           

            int result = 0;
            if(op.Equals("+"))
                result = operand1 + operand2;
            if (op.Equals("-"))
                result = operand1 - operand2;
            if (op.Equals("*"))
                result = operand1 * operand2;
            if (op.Equals("/"))
                result = operand1 / operand2;
            if (op.Equals("%"))
                result = operand1 % operand2;
            Console.WriteLine(
                "{0} {1} {2} = {3}", operand1, op, operand2, result);
            /*************************************************
             *
             * 문자열과 특정 자료형 사이의 변환s
             *
             * 1. 문자열 -> 특정 자료형 : 특정자료형.Parse(문자열)
             * 2. 특정자료형 -> 문자열 : 특정자료형.ToString()
             *
             * **********************************************/
       
}
    }
}

반응형
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유