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 the nearest value of 20 of two given integers and return 0 if two numbers are same
Q:

Write a C# program to check the nearest value of 20 of two given integers and return 0 if two numbers are same

0

Write a C# program to check the nearest value of 20 of two given integers and return 0 if two numbers are same

Sample Output:

Input first integer:                                                   
15                                                                     
Input second integer:                                                  
12                                                                     
15

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 Exercise40
{
    public static void Main( )
    {
        Console.WriteLine("\nInput first integer:");  
        int x = Convert.ToInt32(Console.ReadLine());
        Console.WriteLine("Input second integer:");  
        int y = Convert.ToInt32(Console.ReadLine());
        int n = 20;
        var val1 = Math.Abs(x - n);
        var val2 = Math.Abs(y - n);
        Console.WriteLine(val1 == val2 ? 0 : (val1 < val2 ? x : y));   
    }
}

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