Taị sao chạy code dưới đây lại cho kết quả sai?
class Programn
{
static void Main()
{
Console.Write(" X = ");
int x = Console.Read();
Console.Write(" X + 5 = {0} ", x+5);
Console.ReadLine();
Console.ReadLine();
}
}
Gõ x= 8, kết quả nhận được là X + 5 =61
class Program
{
static void Main(string[] args)
{
string chuoi;
int x;
Console.Write(" Nhap So X = ");
chuoi = Console.ReadLine();
x = Convert.ToInt32(chuoi);
Console.Write(" X + 5 = {0} ", x+5);
Console.ReadLine();
}
}
Gõ X = 8, kết quả nhận được là X+5=13 .
Cám ơn!!
class Programn
{
static void Main()
{
Console.Write(" X = ");
int x = Console.Read();
Console.Write(" X + 5 = {0} ", x+5);
Console.ReadLine();
Console.ReadLine();
}
}
Gõ x= 8, kết quả nhận được là X + 5 =61
class Program
{
static void Main(string[] args)
{
string chuoi;
int x;
Console.Write(" Nhap So X = ");
chuoi = Console.ReadLine();
x = Convert.ToInt32(chuoi);
Console.Write(" X + 5 = {0} ", x+5);
Console.ReadLine();
}
}
Gõ X = 8, kết quả nhận được là X+5=13 .
Cám ơn!!
Comment