2014年6月4日 星期三

  1. //  小數點處理例
  2. #include <iostream>  
  3. #include <cmath>  
  4. #include <iomanip>  
  5. using namespace std;  
  6. int main()  
  7. {  
  8.     int x1,y1,x2, y2;  
  9.     while (cin >> x1 >> y1 >> x2 >> y2)  
  10.     {  
  11.         double ans = sqrt((double)(x1 - x2)*(x1 - x2) + (y1 - y2)*(y1 - y2));  
  12.         cout.setf(ios::fixed, ios::floatfield);  
  13.         cout.precision(3);  
  14.         cout << ans << endl;  
  15.     }  
  16.     return 0;  
  17. }  

沒有留言: