C#: Check whether y is greater than x, and z is greater than y from three given integers x,y,z
C# Sharp Basic Algorithm: Exercise-48 with Solution
Write a C# Sharp program to check whether y is greater than x, and z is greater than y from three given integers x,y,z.
Visual Presentation:
Sample Solution:-
C# Sharp Code:
using System;
using System.Linq;
namespace exercises
{
// Class declaration
class Program
{
// Main method - entry point of the program
static void Main(string[] args)
{
// Calling the 'test' method with different integer values and printing the results
Console.WriteLine(test(1, 2, 3)); // Output: True
Console.WriteLine(test(4, 5, 6)); // Output: True
Console.WriteLine(test(-1, 1, 0)); // Output: False
Console.ReadLine(); // Keeping the console window open
}
// Method to check if the integers x, y, z are in ascending order
public static bool test(int x, int y, int z)
{
// Returns true if x is less than y and y is less than z
return x < y && y < z;
}
}
}
Sample Output:
True True False
Flowchart:
C# Sharp Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a C# Sharp program to check whether it is possible to add two integers to get the third integer from three given integers.
Next: 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.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/csharp-exercises/basic-algo/csharp-basic-algorithm-exercises-48.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics