标签:
5 9 10 7 11 1 6 5 7 3 5 2 7 3 7 6 0
19 13
代码:
01.
#include<iostream>
02.
using
namespace
std;
03.
int
main()
04.
{
05.
int
t;
06.
while
(cin>>t&&t!=0)
07.
{
08.
int
c,b,i,j,temp,a[50];
09.
for
(i =0;i < t;i++)
10.
{
11.
cin>>c>>b;
12.
a[i]=c+b;
13.
}
14.
for
(i = 0;i < t-1;i++ )
15.
for
(j =0;j <t-i-1;j++)
16.
{
17.
if
(a[j] > a[j+1])
18.
{
19.
temp = a[j];
20.
a[j] =a[j+1];
21.
a[j+1] = temp;
22.
}
23.
}
24.
cout<<a[t-1]<<endl;
25.
}
26.
27.
return
0;
28.
}
标签:
原文地址:http://blog.csdn.net/u012701023/article/details/46045585