Module: 서브루틴: 절차 및 기능 - 2


Problem

5/10

최대 3개의 숫자

Problem

두 숫자의 최대값을 계산하는 함수를 작성하세요. 이 함수를 이용하여 최대 3개의 숫자를 구하는 함수를 작성하시오.

입력: 세 줄에 세 개의 정수.
출력: 프로그램은 수신된 숫자의 최대값을 표시해야 합니다.

예.
<몸>

입력 출력
1
2
3
3
1
using System;  
2
class Program  
3
{   
4
    static int FindMax(int x, int y)   
5
    {  
6
7
8
9
10
11
12
13
14
    }  
15
    static void Main()  
16
    {  
17
        int x = Convert.ToInt32(Console.ReadLine());  
18
        int y = Convert.ToInt32(Console.ReadLine());  
19
        int z = Convert.ToInt32(Console.ReadLine());  
20
21
        Console.WriteLine(ans);  
22
    }  
23
}  

     

Program check result

To check the solution of the problem, you need to register or log in!