Decla

 using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;



namespace Sololearn

{

    class Program

    {

        static void Main(string[] args)

        {

            int myInt = 12;

            double myDouble = 63.9;

            bool myBool = true;

            string myString = "Hello world";

            char myChar = 'B';

            

            Console.WriteLine(myInt);

            Console.WriteLine("Value of double is "+ myDouble);

            Console.WriteLine("Value of bool is {0,-10} test",myBool);

            Console.WriteLine($"Vale of string {myString}");

            

            Console.WriteLine(myChar);

        }

    }

}


Comments

Popular Posts