Write a C# Sharp program to check if three given numbers are in strict increasing order, such as 4 7 15, or 45, 56, 67, but not 4 ,5, 8 or 6, 6, 8.However,if a fourth parameter is true, equality is allowed, such as 6, 6, 8 or 7, 7, 7
- برمجة سي شارب
- برمجة
- 2021-05-16
- MarwaMohammed
الأجوبة
using System;
using System.Linq;
namespace exercises
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(test(1, 2, 3, false));
Console.WriteLine(test(1, 2, 3, true));
Console.WriteLine(test(10, 2, 30, false));
Console.WriteLine(test(10, 10, 30, true));
Console.ReadLine();
}
public static bool test(int x, int y, int z, bool flag)
{
return flag ? x <= y && y <= z : x < y && y < z;
}
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال