- Code:
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Nhap a,b,c");
double a = double.Parse(Console.ReadLine());
double b = double.Parse(Console.ReadLine());
double c = double.Parse(Console.ReadLine());
if (a == 0)
if (b == 0)
if (c == 0)
Console.WriteLine("Phuong trinh co vo so nghiem");
else
Console.WriteLine("Phuong Trinh vo nghiem 1");
else
{
double x = -c / b;
if (x >= 0)
{
double t = Math.Sqrt(x);
Console.WriteLine("Phuong trinh co nghiem t = ", t);
}
else
Console.WriteLine("Phuong trinh vo ngiem 2");
}
else
{
double d = b * b - 4 * a * c;
if (d < 0)
Console.WriteLine("Phuong Trinh vo nghiem 3");
else
if (d == 0)
{
double x = -b / (2 * a);
if (x >= 0)
{
double t = Math.Sqrt(x);
Console.WriteLine("Phuong trinh co nghiem t = " + t);
}
else
Console.WriteLine("Phuong trinh vo nghiem 4");
}
else
{
double x1 = (-b + Math.Sqrt(d)) / (2 * a);
double x2 = (-b - Math.Sqrt(d)) / (2 * a);
if (x1 >= 0 )
{
double t1 = Math.Sqrt(x1);
Console.WriteLine("Phuong trinh co hai nghiem phan biet t1 = {0:N} và t2 = {1:N}", t1,-t1);
}
if (x2 >= 0)
{
double t2 = Math.Sqrt(x2);
Console.WriteLine("Phuong trinh co hai nghiem phan biet t2 = {0:N} và t2 = {1:N}", t2,-t2);
if (x1<0 && x2<0)
Console.WriteLine("Phuong trinh vo nghiem 5");
}
}
}
}
}
}
Được sửa bởi tdat00 ngày Tue Mar 24, 2009 2:57 pm; sửa lần 1. (Reason for editing : add code tag)