[C#] 최대값, 최소값 구하는 방법




 

안녕하세요~~

 

오늘은 C#으로 최대값, 최소값 구하는 방법에 대해서 예제 코드를 통하여 알려드리도록 하겠습니다.

 

해당 알고리즘은 매우 간단한 알고리즘이면서, 매우 자주 사용하는 방법이니까 한번씩을 따라해 보시면 좋을거에요ㅎㅎ

 

예제 코드


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace 최솟값

{

    class Program

    {

        static void Main(string[] args)

        {

            int[] data = { 65456124356-9 };

 

            int min = data[0];

            int max = 0;

 

            for(int idx = 0; idx < data.Length; idx++)

            {

                //최솟값 구하는 로직

                if(min > data[idx])

                {

                    min = data[idx];

                }

 

                //최대값 구하는 로직

                if(max < data[idx])

                {

                    max = data[idx];

                }

            }

 

            Console.WriteLine("최솟  : {0}, 최대  {1}", min, max);

        }

    }

}

 

Colored by Color Scripter

cs

 

실행 결과



 

매우 간단한 소스코드라서, 따로 부연설명은 드리지 않겠습니다~~


728x90

이 글을 공유하기

댓글

Designed by JB FACTORY