华师一附中OI组

标题: 数轴上两个点分别在x1和x2处,求他们的距离。 [打印本页]

作者: admin    时间: 2018-7-4 17:18
标题: 数轴上两个点分别在x1和x2处,求他们的距离。
比如输入1  8 输出7 输入 -2 9 输出11
作者: WJL    时间: 2018-7-4 21:37
  1. #include<iostream>
  2. using namespace std;
  3. int x1,x2,s;
  4. int main()
  5. {
  6.     cin>>x1>>x2;
  7.     if(x1<x2)
  8.         swap(x1,x2);
  9.     s=x1-x2;
  10.     cout<<s;
  11.     return 0;
  12. }
复制代码

作者: JASONZHU    时间: 2018-7-6 22:17
题2.
  1. #include <iostream>
  2. using namespace std;
  3. int x1,x2,x;
  4. int main()
  5. {
  6.     cin>>x1>>x2;
  7.     if(x1>x2)
  8.     {
  9.         x=x1-x2;
  10.     }
  11.     else if(x1<x2)
  12.     {
  13.     x=x2-x1;
  14.     }
  15.       cout<<x;
  16.     return 0;
  17. }
复制代码

作者: 郑子川    时间: 2018-7-12 11:38
本帖最后由 郑子川 于 2018-7-12 14:48 编辑
  1. #include <iostream>
  2. int a,b,c;
  3. using namespace std;

  4. int main()
  5. {
  6.     cin>>a>>b;
  7.    if(a>b)
  8.    c=a-b;
  9.    else
  10.    c=b-a;
  11.    cout<<c;
  12. }
复制代码


作者: 舒安澜    时间: 2018-11-23 16:54
#include<iostream>
using namespace std;
int x1,x2;
int main()
{
cin>>x1>>x2;
if (x1>=x2)cout<<x1-x2;
else cout<<x2-x1;
return 0;
}







欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2