Codeforce:723A. The New Year: Meeting Friends (水题)
题意:有三个好朋友的家都住在x轴的不同坐标,问新年的时候三个朋友之间问候走的最短距离
max{(a,b,c)} - min{(a,b,c)} 即可
编译器由 VS2017 切换到VScode使用,纪念下
Examples
input
7 1 4
output
6
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c; cin>>a>>b>>c;
cout<< max({a,b,c}) - min({a,b,c});//新版本C++的max,min内置了3个数比较的temple
return 0;
}