입력형식:피연산자 와 연산자 사이 공백없이, ex)123+456 class Program { static void Main(string[] args) { int x, y, result = 0; char op; Console.Write("두 숫자와 연산자를 입력하라 (x+y) : "); int p1 = 0; int p2 = 0; op = (char)Console.Read(); while(true) { x = Console.Read(); y = Console.Read(); if(x >= '0' & x <= '9') { x = x - '0'; p1 = p1 *..