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.

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;
            Console.WriteLine("enter a no");
            a = Convert.ToInt16(Console.ReadLine());
            string myString = (a < 10) ? "less than 10" : "greater than 10";//The Ternary Operator
            Console.WriteLine(myString);
            Console.ReadKey();
        }
    }
}
//TikroSoft