Codeforces_723_A

Posted 冷暖知不知

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces_723_A相关的知识,希望对你有一定的参考价值。

http://codeforces.com/problemset/problem/723/A

 

取中间那个数就可以了,答案为最大值减最小值。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<cmath>
#define INF 0x3f3f3f3f
using namespace std;

int main()
{
    int a,b,c;
    scanf("%d%d%d",&a,&b,&c);
    int x = min(a,b);
    x = min(x,c);
    int z = max(a,b);
    z = max(z,c);
    printf("%d\n",z-x);
 } 

 

以上是关于Codeforces_723_A的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces_723_D

Codeforces_723_B

Codeforces_723_C

Codeforces Round #723 (Div. 2) (A~C题题解)

Codeforces Round #723 (Div. 2) A. Mean Inequality(构造)

Codeforces Round #723 (Div. 2)Codeforces-1526ABCD