Welcome

Hi! This blog is for beginners of c++ and java .You can check and pick codes for your programming assignments. This will also help you to understand the concepts of these programming languages. Its all about programming.

ifelse

Sunday, July 17, 2011

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

namespace chash_test_2
{
    class Program
    {
        static void Main(string[] args)
        {
            int a, b;
            string Comp;
            Console.WriteLine("cout 2 no");
            a = Convert.ToInt16(Console.ReadLine());
            b= Convert.ToInt16(Console.ReadLine());
            if (a > b)
            {
                Comp = "is greater than";
                    Console.WriteLine("{0}is {1} {2}",a,Comp,b);
            }else
            {
                Comp = "is less than";
                    Console.WriteLine("{0}is {1} {2}",a,Comp,b);
            }

            Console.ReadKey();

           
        }
    }
}
//TikroSofts