返回列表 發帖
回復 1# stephen
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cmath>
  4. using namespace std;
  5. int main(void){
  6.    
  7.     int a;
  8.     int b;
  9.     int c;
  10.     cout << "請輸入a" << endl;
  11.     cin >> a;
  12.     cout << "請輸入b" << endl;
  13.     cin >> b;
  14.     cout << "請輸入c" << endl;
  15.     cin >> c;

  16.     int x = (b*b)-4*a*c;
  17.    
  18.     if(x>0){
  19.         cout << ((-b)+ sqrt(x))/(2*a) << endl;
  20.         cout << ((-b)- sqrt(x))/(2*a) << endl;      
  21.     }
  22.    
  23.     if(x == 0){
  24.          cout << (-b)/(2*a) <<endl;
  25.     }
  26.       
  27.     system("pause");

  28.     return 0;

  29. }
複製代碼
明輝

TOP

返回列表