[C#] 11일차 - 71. 소수인지를 알아내는 정적 메소드C#/C#200제2021. 1. 31. 15:21
Table of Contents
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A071_IsPrime
{
class Program
{
static void Main(string[] args)
{
// 1~100까지의 소수를 찾는 프로그램
int count = 0;
for(int i=2; i<=100; i++)
{
if (IsPrime(i))
{
Console.Write("{0} ", i);
count++;
}
}
Console.WriteLine("\n2~100까지 소수는 모두 {0}개 있습니다.", count);
}
private static bool IsPrime(int x)
{
for(int i=2; i<x; i++)
{
if (x % i == 0)
return false;
}
return true;
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 11일차 - 73. 생애계산기 (0) | 2021.01.31 |
---|---|
[C#] 11일차 - 72. 윤년인지 알아내는 정적 메소드 (0) | 2021.01.31 |
[C#] 11일차 - 70. 세개의 숫자중 가장 큰 수를 찾는 정적 메소드 (0) | 2021.01.31 |
[C#] 10일차 - 69. 속성(Property) (0) | 2021.01.30 |
[C#] 10일차 - 68. 생성자 메소드 (0) | 2021.01.30 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!