//Program to show Console.Write and Console.WriteLine
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace chash1_1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("*********************");
Console.Write("My name is sukhvir\n");
Console.Write("I live in Poland\n");
Console.WriteLine("*********************");
Console.ReadKey();
}
}
}
No comments:
Post a Comment
Note: only a member of this blog may post a comment.