#include <iostream> #include <cstdlib> #include <cmath> #include <string.h> #include <string> #include <iterator> #include <numeric> #include <algorithm> #include <deque> #include <vector> #include <sstream> using namespace std; int main() { double x1,y1,x2,y2; cin>>x1>>y1>>x2>>y2; if(x2-x1==0) { cout<<"INF"<<endl; } else { cout<<(y2-y1)/(x2-x1)<<endl; } return 0; }
解题思路:
注意事项:
参考代码:
0.0分
0 人评分