CS_0005_Condition2


Result:

Checking True or False Condition:
Please enter your choice 1 or 2 or 3
2

You won:BIKE




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

namespace trueOrFalse
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Checking True or False Condition:");
            Console.WriteLine("Please enter your choice 1 or 2 or 3");

            string userValue = Console.ReadLine();
            string message = (userValue =="1")?"CAR":"BIKE";

            Console.WriteLine("You won:" + message);
            Console.ReadLine();

        }
    }
}


Comments