Write a C# program to check if an given integer is within 20 of 100 or 200
- برمجة سي شارب
- برمجة
- 2021-05-14
- MarwaMohammed
الأجوبة
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;
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال