//
// Copyright (c) 2014软件技术1班
// All rights reserved.
// 作 者:A05黄婉菲
// 完成日期:2014年 10 月 26日
// 版 本 号:v1.0
//
// 问题描述:求一元二次方程。ax²+bx+c=0(a≠0)
// 输入描述:三个数
// 程序输出:方程的解
//
// Copyright (c) 2014软件技术1班
// All rights reserved.
// 作 者:A05黄婉菲
// 完成日期:2014年 10 月 26日
// 版 本 号:v1.0
//
// 问题描述:求一元二次方程。ax²+bx+c=0(a≠0)
// 输入描述:三个数
// 程序输出:方程的解
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
double a, b, c, x;
Console.WriteLine("请输入a,b,c的值");
a = Convert.ToDouble(Console.ReadLine());
b = Convert.ToDouble(Console.ReadLine());
c = Convert.ToDouble(Console.ReadLine());
if (Math.Pow(b, 2) - 4 * a * c >= 0)
{
Console.WriteLine("x1=" + (-b + Math.Sqrt(b * b - 4 * a * c)) / (2 * a));
Console.WriteLine("x2=" + (-b + Math.Sqrt(b * b - 4 * a * c)) / (2 * a));
{
class Program
{
static void Main(string[] args)
{
double a, b, c, x;
Console.WriteLine("请输入a,b,c的值");
a = Convert.ToDouble(Console.ReadLine());
b = Convert.ToDouble(Console.ReadLine());
c = Convert.ToDouble(Console.ReadLine());
if (Math.Pow(b, 2) - 4 * a * c >= 0)
{
Console.WriteLine("x1=" + (-b + Math.Sqrt(b * b - 4 * a * c)) / (2 * a));
Console.WriteLine("x2=" + (-b + Math.Sqrt(b * b - 4 * a * c)) / (2 * a));
}
else
{
Console.WriteLine("无解!");
Console.Read();
}
{
Console.WriteLine("无解!");
Console.Read();
}
}
}
小结: 熟悉了一元二次方程的解法