华师一附中OI组
标题:
数轴上两个点分别在x1和x2处,求他们的距离。
[打印本页]
作者:
admin
时间:
2018-7-4 17:18
标题:
数轴上两个点分别在x1和x2处,求他们的距离。
比如输入1 8 输出7 输入 -2 9 输出11
作者:
WJL
时间:
2018-7-4 21:37
#include<iostream>
using namespace std;
int x1,x2,s;
int main()
{
cin>>x1>>x2;
if(x1<x2)
swap(x1,x2);
s=x1-x2;
cout<<s;
return 0;
}
复制代码
作者:
JASONZHU
时间:
2018-7-6 22:17
题2.
#include <iostream>
using namespace std;
int x1,x2,x;
int main()
{
cin>>x1>>x2;
if(x1>x2)
{
x=x1-x2;
}
else if(x1<x2)
{
x=x2-x1;
}
cout<<x;
return 0;
}
复制代码
作者:
郑子川
时间:
2018-7-12 11:38
本帖最后由 郑子川 于 2018-7-12 14:48 编辑
#include <iostream>
int a,b,c;
using namespace std;
int main()
{
cin>>a>>b;
if(a>b)
c=a-b;
else
c=b-a;
cout<<c;
}
复制代码
作者:
舒安澜
时间:
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