程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 求根

求根

編輯:C++入門知識

[cpp]
*
* 程序的版權和版本聲明部分
* Copyright (c)2013, 煙台大學計算機學院學生
* All rightsreserved.
* 文件名稱: object.cpp
* 作者:張浩
* 完成日期: 2013年06月14日
* 版本號: v1.0
* 輸入描述:無
* 問題描述:無
* 程序輸出:無
*/ 
#include <iostream>  
#include <math.h>  
using namespace std; 
int main() 

    float a,b,c,disc; 
    cout<<"please input a,b,c:"; 
    cin>>a>>b>>c; 
    if (a==0) 
        cerr<<"a is equal to zero,error!"<<endl; 
    else if ((disc=b*b-4*a*c)<0) 
        cerr<<"disc=b*b-4*a*c<0"<<endl; 
    else 
    { 
        cout<<"x1="<<(-b+sqrt(disc))/(2*a)<<endl; 
        cout<<"x2="<<(-b-sqrt(disc))/(2*a)<<endl; 
    } 
    return 0; 

/*
* 程序的版權和版本聲明部分
* Copyright (c)2013, 煙台大學計算機學院學生
* All rightsreserved.
* 文件名稱: object.cpp
* 作者:張浩
* 完成日期: 2013年06月14日
* 版本號: v1.0
* 輸入描述:無
* 問題描述:無
* 程序輸出:無
*/
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
    float a,b,c,disc;
    cout<<"please input a,b,c:";
    cin>>a>>b>>c;
    if (a==0)
        cerr<<"a is equal to zero,error!"<<endl;
    else if ((disc=b*b-4*a*c)<0)
        cerr<<"disc=b*b-4*a*c<0"<<endl;
    else
    {
        cout<<"x1="<<(-b+sqrt(disc))/(2*a)<<endl;
        cout<<"x2="<<(-b-sqrt(disc))/(2*a)<<endl;
    }
    return 0;
}
運行結果:

 

\

\

還有:

 


 

\

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved