w3resource

C#: Check whether one of the given temperatures is less than 0 and the other is greater than 100


C# Sharp Basic Algorithm: Exercise-13 with Solution

Write a C# Sharp program that checks whether one temperature is less than 0 and another is greater than 100.

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Check if one given temperatures is less than 0 and the other is greater than 100.

Sample Solution:

C# Sharp Code:

using System;

// Namespace declaration
namespace exercises
{
    // Class declaration
    class Program
    {
        // Main method - entry point of the program
        static void Main(string[] args)
        {
            // Calling the 'test' method with different integers and displaying the returned values
            Console.WriteLine(test(120, -1)); // Output: True
            Console.WriteLine(test(-1, 120)); // Output: True
            Console.WriteLine(test(2, 120));  // Output: False
            Console.ReadLine();               // Keeping the console window open
        }

        // Method to test conditions based on two integer values
        public static bool test(int temp1, int temp2)
        {
            // Check if temp1 is less than 0 AND temp2 is greater than 100
            // OR check if temp2 is less than 0 AND temp1 is greater than 100
            // Return true if either of these conditions is met; otherwise, return false
            return temp1 < 0 && temp2 > 100 || temp2 < 0 && temp1 > 100;
        }
    }
}

Sample Output:

True
True
False

Flowchart:

C# Sharp: Flowchart: Check if one given temperatures is less than 0 and the other is greater than 100.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to check if a given string starts with "C#" or not.
Next: Write a C# Sharp program to check two given integers whether either of them is in the range 100..200 inclusive.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.