응용 코드using System;using static System.Console;//Console단어를 생략(코드길이줄어둠)namespace ConsoleApp1{ class Program { static void Main(string[] args) { WriteLine("x의 y승을 계산합니다."); //콘솔에서 두 수를 입력받아 정수로 변환하여 x, y에 저장한다. Write(" x를 입력하세요 : "); int x = int.Parse(ReadLine()); Write(" y를 입력하세요 : "); int y = int.Parse(ReadLine()); //pow는 숫자를 곱해나가므로 0이 아닌 1로 초기화한다. ..