Tìm kiếm

Chương trinh đầu tiên - Hello in C# (CSHARP)

Code :
using System;

using System.Collections.Generic;

using System.Linq;
using System.Text;
namespace Hello
{

class Program


{

static void Main(string[] args)


{

// Khai báo biến


string ten;// Biến Ten kiểu chuỗi

int tuoi,namsinh;// Biến tuổi, năm sinh kiểu nguyên

//Xuất ra màn hình

Console.OutputEncoding=Encoding.UTF8; /* Hiển thị tiếng việt trong môi trường Console

(lưu ý bạn phải chỉnh lại font trong môi trường console

kick chuột phải ở thanh menu trong môi trường console

--> properties --> font=consolas)*/

Console.BackgroundColor = ConsoleColor.White; // Màu nền

Console.ForegroundColor = ConsoleColor.Black;// Màu chữ

Console.WriteLine("\t -----CHƯƠNG TRÌNH ĐẦU TIÊN----- \n\n");

Console.WriteLine("Chào mừng bạn đến với blog của tôi ! \n");

Console.WriteLine("Mời bạn nhập tên của mình :\n ");

ten = Console.ReadLine(); // nhập tên

Console.WriteLine("Chúc {0} có những giây phút vui vẻ !", ten);/* {0} = vị trí truyền value, ten=value*/


Console.WriteLine("Bạn {0} bao nhiêu tuổi ? ",ten);


tuoi = int.Parse(Console.ReadLine());

Console.WriteLine("Bạn {0} năm nay {1} tuổi ! ", ten,tuoi);

DateTime namhientai = DateTime.Now; // Lưu năm hiện tại

namsinh = (namhientai.Year - tuoi);

Console.WriteLine("Bạn {0} sinh năm {1} !", ten,namsinh);


Console.ReadLine();

}

}

}
 

Read Users' Comments (0)

0 Response to "Chương trinh đầu tiên - Hello in C# (CSHARP)"

Đăng nhận xét

Support

Liên hệ DMTuan-Uneti
Mọi thông tin góp ý các bạn liên hệ với mình ! Mail:
  1. manhtuan.leo@gmail.com
  2. manhtuan.itvp@gmail.com

Y!M: manhtuan.it92