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()
*
* **********************************************/
}
}
}
'프로그램 > C# - Study' 카테고리의 다른 글
4D - while문 , continue 제어, goto 제어 (0) | 2010.09.09 |
---|---|
4D - while문 반복문 (0) | 2010.09.09 |
2D - 비쥬얼스튜디오2010 으로 C# 코딩 (0) | 2010.09.07 |
2D - 메모장을 활용 C# 코딩 (0) | 2010.09.07 |
C# MySQL 연동하기[펌] (0) | 2010.06.22 |