Module: Chương trình con: thủ tục và hàm - 2


Problem

5/10

Tối đa ba số

Problem

Viết hàm tính tổng hai số lớn nhất. Sử dụng hàm này, viết hàm tìm số lớn nhất trong ba số.

Dữ liệu vào: ba số nguyên trên ba dòng.
Đầu ra: Chương trình sẽ hiển thị giá trị lớn nhất của các số nhận được.

Ví dụ.


Đầu vào Đầu ra
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!