[C#] 11일차 - 75. 팩토리얼을 계산하는 메소드C#/C#200제2021. 2. 5. 11:00
Table of Contents
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A075_FactorialMethod
{
class Program
{
static void Main(string[] args)
{
int sum = 0;
for(int i=1; i<=10; i++)
{
sum += Factorial(i);
Console.WriteLine("{0,2}! : {1,10:N0}", i, Factorial(i));
}
Console.WriteLine("1! ~ 10!의 합 = {0,8:N0}", sum);
}
private static int Factorial(int n)
{
int fact = 1;
for (int i = 1; i <= n; i++)
fact *= i;
return fact;
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 11일차 - 77. n의 m승을 계산하는 메소드 (0) | 2021.02.05 |
---|---|
[C#] 11일차 - 76. 두 숫자 사이의 모든 정수값을 더하는 메소드 (0) | 2021.02.05 |
[C#] 11일차 - 74. 피라미드 메소드 (0) | 2021.02.05 |
[C#] 11일차 - 73. 생애계산기 (0) | 2021.01.31 |
[C#] 11일차 - 72. 윤년인지 알아내는 정적 메소드 (0) | 2021.01.31 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!