using System;
namespace PhuongTrinhBacNhat{
class Program {
static void Main(string[] args) {
Console.Write("Nhap he so a :");
int a = int.Parse(Console.ReadLine());
Console.Write("Nhap he so b :");
int b = int.Parse(Console.ReadLine());
if (a == 0)
if (b == 0)
Console.WriteLine("Phuong trinh co vo so nghiem");
else
Console.WriteLine("Phuong trinh vo nghiem ");
else{
int ketqua = -b / a;
Console.WriteLine("Phuong trinh co nghiem la x = {0}",
ketqua.ToString());
}
Console.ReadKey();
}
}
}
namespace PhuongTrinhBacNhat{
class Program {
static void Main(string[] args) {
Console.Write("Nhap he so a :");
int a = int.Parse(Console.ReadLine());
Console.Write("Nhap he so b :");
int b = int.Parse(Console.ReadLine());
if (a == 0)
if (b == 0)
Console.WriteLine("Phuong trinh co vo so nghiem");
else
Console.WriteLine("Phuong trinh vo nghiem ");
else{
int ketqua = -b / a;
Console.WriteLine("Phuong trinh co nghiem la x = {0}",
ketqua.ToString());
}
Console.ReadKey();
}
}
}
0 Response to Code C#: Tổng 2 số nguyên a, b nhập từ bàn phím (Console)
Post a Comment