Weather live

+27
°
C
H: +28°
L: +22°
Kathmandu
Friday, 14 August
See 7-Day Forecast
Sat Sun Mon Tue Wed Thu
+24° +26° +27° +26° +25° +26°
+21° +20° +20° +20° +20° +20°

Breaking News

Write a C# program to find greatest number

using System;
    public class test
    {
        public static void Main()
            {
                int a,b;
                Console.WriteLine("Enter First Number:");
                a= Convert.ToInt32(Console.ReadLine());
                Console.WriteLine("Enter Second Number:");
                b= Convert.ToInt32(Console.ReadLine());
                if(a>=b)
                Console.Write("First Number is Greatest:"+a);
                else
                Console.Write("Second Number is Greatest:"+b);
            }
    }

No comments