Hàm Console.Write trong C#

Cách sử dụng Console.Write trong C#, so sánh với hàm Console.WriteLine()

  1. Chức năng hàm Console.Write
  2. Ví dụ cơ bản và Console.Write và Console.WriteLine
  3. Video thực hành hàm Write

1. Chức năng hàm Console.Write

Hàm Console.Write trong C# dùng để in ra màn hình.

Ngoài hàm Console.Write(), còn hàm Console.WriteLine()

Cú pháp hàm Write trong C#:

Console.Write(<nội dung cần in>);
Console.WriteLine(<nội dung cần in>);

📌 Ghi chú: <nội dung cần in> có thể là chuỗi, số, hoặc bất kỳ giá trị nào có thể chuyển thành chuỗi.

2. Ví dụ cơ bản và Console.Write và Console.WriteLine

Ví dụ hàm Console.Write

using System;
class Program
{
    static void Main()
    {
        Console.Write("Xin chào ");
        Console.Write("C#!");
    }
}

Ví dụ so sánh hàm Console.Write và Console.WriteLine

using System;
class Program
{
    static void Main()
    {
        Console.Write("A");
        Console.Write("B");
        Console.Write("C");

        Console.WriteLine("X");
        Console.WriteLine("Y");
        Console.WriteLine("Z");
    }
}

Write in liên tục trên một dòng.

☑ WriteLine xuống dòng sau mỗi lần in.
Dùng Console.Write với biến

int age = 25;
Console.Write("Tôi năm nay ");
Console.Write(age);
Console.Write(" tuổi.");


Kết quả: Tôi năm nay 25 tuổi.
Dùng Console.Write với chuỗi định dạng

Có thể sử dụng dấu {} để định dạng đầu ra:

string name = "Nhật";
int age = 30;

Console.Write("Tên: {0}, Tuổi: {1}", name, age);


Kết quả:
Tên: Nhật, Tuổi: 30

3. Video thực hành method / hàm Main

Cách sử dụng Console.Write trong C#, so sánh với hàm Console.WriteLine()