A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a C# program to check if an integer (from the two given integers) is in the range -10 to 10
Q:

Write a C# program to check if an integer (from the two given integers) is in the range -10 to 10

0

Write a C# program to check if an integer (from the two given integers) is in the range -10 to 10

Sample Output:

Input a first number: -5                                               
Input a second number: 8                                               
True

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

public class Exercise36 {
  static void Main(string[] args)
        {
            Console.Write("Input a first number: ");
            int m = Convert.ToInt32(Console.ReadLine());
            Console.Write("Input a second number: ");
            int n = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine(((m >= -10 && m <= 10)) || ((n >= -10 && n <= 10)));
        }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now