[dotNET - C# Console] Viết chương trình giải phương trình bậc 1 Phần mềm: Visual Studio 2010 CODE: Select All using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { Console.WriteLine("Nhap he so a:"); int a = Int32.Parse(Console.ReadLine()); Console.WriteLine("Nhap he so b:"); int b = Int32.Parse(Console.ReadLine()); if (a == 0) { if (b == 0) { Console.WriteLine("Phuong trinh vo so nghiem"); } else { Console.WriteLine("Phuong trinh vo nghiem"); } } else { int ketqua = -b / a; Console.WriteLine("Phuong trinh co nghiem la: {0}",ketqua.ToString()); } Console.ReadLine(); } }}