[C#] 7일차 - 47. x의 y승 구하기C#/C#200제2021. 1. 23. 09:35
Table of Contents
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A047_Power
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("x의 y승을 계산합니다.");
Console.Write("x 를 입력하세요 : ");
int x = int.Parse(Console.ReadLine());
Console.Write("y 를 입력하세요 : ");
int y = int.Parse(Console.ReadLine());
int pow = 1;
for (int i = 0; i < y; i++)
{
pow *= x;
}
Console.WriteLine("{0}의 {1}승은 {2}입니다.", x, y, pow);
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 8일차 - 049. 소수 판단하기 (0) | 2021.01.23 |
---|---|
[C#] 7일차 - 48. 팩토리얼 구하기 (0) | 2021.01.23 |
[C#] 7일차 - 46. 평균, 최소, 최대값 구하기 (0) | 2021.01.22 |
[C#] 7일차 - 45. 반복문으로 구구단 출력 (0) | 2021.01.22 |
[C#] 7일차 - 44. 반복문으로 2진, 8진, 16진 출력 (0) | 2021.01.22 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!