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.
using System;
class Program
{
static void Main()
{
Console.Write("Xin chào ");
Console.Write("C#!");
}
}
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");
}
}
☑ 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.");
string name = "Nhật";
int age = 30;
Console.Write("Tên: {0}, Tuổi: {1}", name, age);
Cách sử dụng Console.Write trong C#, so sánh với hàm Console.WriteLine()