[C#] 8일차 - 52. 합계가 10000이 넘는 순간 총 합
C#/C#200제2021. 1. 23. 10:20[C#] 8일차 - 52. 합계가 10000이 넘는 순간 총 합

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace A052_UsingBreak { class Program { static void Main(string[] args) { int sum = default; // (1) for (int i = 1; ; i++) { sum += i; if(sum >= 10000) { Console.WriteLine("1~{0}의 합은 = {1}", i, sum); break; } } // (2) sum = 0; int index = 1; // 반복문이 끝났을때 출력하기 위해 index를 밖에다 선언함 ..

[C#] 8일차 - 51. 무한루프와 break문
C#/C#200제2021. 1. 23. 10:09[C#] 8일차 - 51. 무한루프와 break문

저금액이 얼마만에 100만원이 넘는지 알아보는 while문과 for문 예제 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace A051_InfiniteLoop { class Program { static void Main(string[] args) { int sum = 0; // 총 저금액 int days = 1; // 몇일 째 인지를 의미 int money = 1000; // 그 날의 저금액 // while문으로 만듬 while (true) { sum += money; Console.WriteLine("{0,2}일차 : {1,8:C..

[C#] 8일차 - 50. 원주율의 계산
C#/C#200제2021. 1. 23. 09:58[C#] 8일차 - 50. 원주율의 계산

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace A050_FindingPI { class Program { static void Main(string[] args) { bool sign = false; double pi = 0; for(int i = 1; i

[C#] 8일차 - 049. 소수 판단하기
C#/C#200제2021. 1. 23. 09:50[C#] 8일차 - 049. 소수 판단하기

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace A049_PrimeNumber { class Program { static void Main(string[] args) { Console.Write("숫자를 입력하세요 : "); int num = int.Parse(Console.ReadLine()); int index; for (index = 2; index < num; index++) { if(num % index == 0) { Console.WriteLine("{0}은 소수가 아닙니다.", num); break; } } if(i..

[C#] 7일차 - 48. 팩토리얼 구하기
C#/C#200제2021. 1. 23. 09:39[C#] 7일차 - 48. 팩토리얼 구하기

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace A048_Factorial { class Program { static void Main(string[] args) { Console.WriteLine("n!를 계산합니다."); Console.Write("n을 입력하세요 : "); int n = int.Parse(Console.ReadLine()); int fact = 1; for (int i = 2; i

image