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

POJ2590:Steps

編輯:C++入門知識

Description One steps through integer points of the straight line. The length of a step must be nonnegative and can be by one bigger than, equal to, or by one smaller than the length of the previous step.  What is the minimum number of steps in order to get from x to y? The length of the first and the last step must be 1. Input Input consists of a line containing n, the number of test cases. Output For each test case, a line follows with two integers: 0 <= x <= y < 2^31. For each test case, print a line giving the minimum number of steps to get from x to y. Sample Input 3 45 48 45 49 45 50 Sample Output 3 3 4   //純規律水題   [cpp]   #include <iostream>   #include <cmath>   using namespace std;      int main()   {       int x,y,n;       cin >> n;       while(n--)       {           cin >> x >> y;           cout << (int)(sqrt(y-x)*2-1e-9) << endl;       }          return 0;   }    

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