Write a C# Sharp program to check whether two given integer values are in the range 20..50 inclusive. Return true if 1 or other is in the said range otherwise false
- برمجة سي شارب
- برمجة
- 2021-05-16
- MarwaMohammed
الأجوبة
using System;
namespace exercises
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(test(20, 84));
Console.WriteLine(test(14, 50));
Console.WriteLine(test(11, 45));
Console.WriteLine(test(25, 40));
Console.ReadLine();
}
public static bool test(int x, int y)
{
return (x <= 20 || y >= 50) || (y <= 20 || x >= 50);
}
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال