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


Problem

3/10

调用函数

Problem

编写一个程序,使用现有函数计算两个数字的算术平均值并打印出如果两个数的算术平均值大于 5,则使用“YES”字样,否则使用“NO”字样- 否则。

输入: 程序的输入是两个自然数(两个数都不超过150)。两个数字在不同的行上。

输出:打印“是”或“否”。


例子。 <正文>
输入 输出
100
101
5
3
没有
1
using System;   
2
class Program   
3
{    
4
    static float average(int x, int y)    
5
    {   
6
        return ((float)((x + y) / 2.0));   
7
    }   
8
    static void Main()   
9
    {   
10
        int x = Convert.ToInt32(Console.ReadLine());   
11
        int y = Convert.ToInt32(Console.ReadLine());   
12
13
14
15
16
17
18
19
20
21
22
    }   
23
}   

     

Program check result

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