팩토리얼 구하기/x의y승 구하기/무한 루프와 break문/합계가 10000이 넘는 순간


팩토리얼 구하기/x의y승 구하기/무한 루프와 break문/합계가 10000이 넘는 순간

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp18 { class Program { static void Main(string[] args) { Console.WriteLine("n의 팩토리얼 값을 구합니다."); int n = int.Parse(Console.ReadLine()); int a = 1; for (int i = 2; i =1000000) { break; } } } } } using System; using System.Collections.Generic; using System.Linq; usin..


원문링크 : 팩토리얼 구하기/x의y승 구하기/무한 루프와 break문/합계가 10000이 넘는 순간