Weather live

+25
°
C
H: +25°
L: +15°
Kathmandu
Sunday, 13 April
See 7-Day Forecast
Mon Tue Wed Thu Fri Sat
+26° +28° +27° +24° +27° +24°
+16° +16° +18° +17° +18° +18°

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