Result | TIME Limit | MEMORY Limit | Run Times | AC Times | JUDGE |
---|---|---|---|---|---|
3s | 65536K | 1548 | 410 | Standard |
给定三个已知长度的边,确定是否能够构成一个三角形,这是一个简单的几何问题。我们都知道,这要求两边之和大于第三边。实际上,并不需要检验所有三种可能,只需要计算最短的两个边长之和是否大于最大那个就可以了。
这次的问题就是:给出三个正整数,计算最小的数加上次小的数与最大的数之差。
每一行包括三个数据a, b, c,并且都是正整数,均小于10000。当a为0时标志所有输入数据结束。
对于输入的每一行,在单独一行内输出结果s。s=min(a,b,c)+mid(a,b,c)−max(a,b,c)。上式中,min为最小值,mid为中间值,max为最大值。
1 2 3 6 5 4 10 20 15 1 1 100 0 0 0
0 3 5 -98
#include <stdio.h> int main(){ while(1){ scanf(“%d%d%d”, &a, &b, &c); if (a==0) break; /*下面进行处理和输出,代码自行填写*/ } return 0; }
You can also read this problem in the PDF file below.
Plase click here to download.
Problem Source: provided by skywind
#include<iostream> #include<algorithm> #include<stdio.h> using namespace std; int a[3]; int main() { while(scanf("%d%d%d",&a[0],&a[1],&a[2])==3) { if(a[0]==0&&a[1]==0&&a[2]==0)break; sort(a,a+3); cout<<a[0]+a[1]-a[2]<<endl; } return 0; }