Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace BiggerInteger
- {
- class BiggerNumber
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Enter two integers : ");
- int firstNum = int.Parse(Console.ReadLine());
- int secondNum = int.Parse(Console.ReadLine());
- if (firstNum > secondNum)
- {
- Console.WriteLine("Greater number is " + firstNum);
- }
- else
- {
- Console.WriteLine("Greater number is " + secondNum);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment