Write a C# Sharp program to check whether two given integers are in the range 40..50 inclusive, or they are both in the range 50..60 inclusive
- برمجة سي شارب
- برمجة
- 2021-05-16
- MarwaMohammed
الأجوبة
using System;
namespace exercises
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(test(78, 95));
Console.WriteLine(test(25, 35));
Console.WriteLine(test(40, 50));
Console.WriteLine(test(55, 60));
Console.ReadLine();
}
public static bool test(int x, int y)
{
return (x >= 40 && x <= 50 && y >= 40 && y <= 50) || (x >= 50 && x <= 60 && y >= 50 && y <= 60);
}
}
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
