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 if an given integer is within 20 of 100 or 200

C# Sharp Basic: Exercise-22 with Solution

Write a C# program to check if an given integer is within 20 of 100 or 200.

Sample Solution:-

C# Sharp Code:

using System;
using System.Collections.Generic;

public class Exercise22 {
 static void Main(string[] args) {
  Console.WriteLine("\nInput an integer:");
  int x = Convert.ToInt32(Console.ReadLine());
  Console.WriteLine(result(x));
 }

 public static bool result(int n) {
  if (Math.Abs(n - 100) <= 20 || Math.Abs(n - 200) <= 20)
   return true;
  return false;
 }
}

Sample Output:

Input an integer: 25                                                                     
False 

Sample Output:

Input an integer: 50
False

Sample Output:

Input an integer: 70
False

Sample Output:

Input an integer: 80
True

Sample Output:

Input an integer: 90
True 

Sample Output:

Input an integer: 110
True
 

Sample Output:

Input an integer: 120
True 

Sample Output:

Input an integer: 125
False 

Sample Output:

Input an integer: 130
False

Flowchart:

Flowchart: C# Sharp Exercises - Check if an given integer is within 20 of 100 or 200

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to check the sum of the two given integers and return true if one of the integer is 20 or if their sum is 20.
Next: Write a C# program to convert a given string into lowercase.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.