返回列表 發帖
  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.     int x = (b*b) - (4*a*c) ;
  11.    
  12.                   
  13.     cin >> a ;
  14.     cin >> b ;
  15.     cin >> c ;
  16.    if(x > 0 ){
  17.         cout << ((-b)+ x)/(2*a) << "or" << ((-b)- x)/(2*a) << endl;
  18.         }else if(x < 0){
  19.                 cout << "no answer" << endl ;
  20.                 }else if(x = 0){
  21.                         cout << (-b)/(2*a) << endl;
  22.                         }
  23.    
  24.     system("pause");
  25.     return 0 ;
  26. }   
複製代碼

TOP

返回列表