Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Check two given numbers where one is less than 100 and other is greater than 200

C# Sharp Basic: Exercise-35 with Solution

Write a C# program to check two given numbers where one is less than 100 and other is greater than 200.

C# Sharp Exercises: Check two given numbers where one is less than 100 and other is greater than 200.

Sample Solution:-

C# Sharp Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class Exercise35 {
  static void Main(string[] args)
        {
            Console.Write("Input a first number(<100): ");
            int m = Convert.ToInt32(Console.ReadLine());
            Console.Write("Input a second number(>200): ");
            int n = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine((m < 100 && n > 200));
        }
}

Sample Output:

Input a first number(<100): 75                                         
Input a second number(>100): 250                                       
True

Flowchart:

Flowchart: C# Sharp Exercises - Check two given numbers where one is less than 100 and other is greater than 200.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to check if a string starts with a specified word.
Next: Write a C# program to check if an integer (from the two given integers) is in the range -10 to 10.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.