#Lutece0977. 中庸之道(一)

中庸之道(一)

Migrated from Lutece 977 中庸之道(一)

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

读入三个整数aabbcc,找出中间数并输出。 中间数是这样定义的:若三数不相等,则第2大的数是中间数;若有两个数相同,则最大数是中间数。

Input

有多组测试数据。输入的第一行是整数TT0<T20000<T\le 2000),表示测试数据的组数。随后有TT行输入,每行是一组测试数据,由整数aabbcc构成,且相邻两整数间有一个空格。231<a,b,c<231-2^{31}<a,b,c<2^{31}

Output

对应每组输入,输出这一行三个数的中间数。

Samples

3
2 3 4
12 35 12
13 13 10
3
35
13

Note

  1. 提交前若程序中有标准输入输出重定向(或文件操作)语句,请删除或注释掉。比如:freopen等。
  2. 提交前若程序中有停顿语句,请删除或注释掉。比如:system(“pause”)getch()等。
  3. 处理每一组测试数据前,建议变量恢复到初始状态,以免受前一组数据处理的影响。

对于本题给予的输入格式,你可以参考以下代码:

#include <stdio.h>

int main()
{
  int a,b,c,i,T;
  scanf("%d",&T);
  for(i=0;i<T;i++)
  {
    //处理当前组数据 
  }
  return 0;
}

或者

#include <stdio.h>

int main()
{
  int a,b,c,T;
  scanf("%d",&T);
  while(T--)
  {
    //读入并处理当前组数据 
  }
  return 0;
}

Resources

wxiaoping C语言OJ平台输入输出适应练习