Module: 子例程:过程和函数 - 2


Problem

5/10

最多三个数

Problem

编写一个函数来计算两个数字的最大值。使用此函数,编写一个函数来查找三个数字中的最大值。

输入:三行三个整数。
输出: 程序应该显示接收到的数字中的最大值。

示例。
<正文>

输入 输出
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!