博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[结题报告]11479 - Is this the easiest problem? Time limit: 1.000 seconds
阅读量:6154 次
发布时间:2019-06-21

本文共 1910 字,大约阅读时间需要 6 分钟。

Problem I
Is this the easiest problem?
Time Limit : 1 second

A triangle is a geometric shape with three positive sides. However, any given three sides won’t necessarily form a triangle. The three sides must form a closed region. Triangles are categorized depending on the values of the sides of a valid triangle. In this problem you are required to determine the type of a triangle.

 

Input
The first line of input will contain a positive integer T<20, where T denotes the number of test cases. Each of the next T lines will contain three 32 bit signed integer.

Output
For each case of input there will be one line of output. It will be formatted as:
Case {x}: {triangle type}. Where x denotes the case number being processed and {triangle type} is the type of the triangle..{triangle type} will be one of the following, depending on the values of the three sides:

Invalid - The three sides can not form a triangle

Equilateral - All three sides of valid triangle are equal
Isosceles - Exactly two of the sides of a valid triangle are equal.
Scalene - No pair of sides are equal in a valid triangle.
Sample Input Sample Output
4
1 2 5
1 1 1
4 4 2
3 4 5

Case 1: Invalid

Case 2: Equilateral
Case 3: Isosceles
Case 4: Scalene

 

参考代码:给定三角形的三条边,判断此三角形的类型(Invalid, Equilateral,Isosceles,Scalene),其符合条件分别为任意2边小于等于第三边;3边全等,任意2边相等,和3边不等。用if语句判断一下就好。

#include"stdio.h"int main(){  long n,a,b,c,i=1;   scanf("%ld",&n);   while(n--)   {scanf("%ld%ld%ld",&a,&b,&c);    if(a+b<=c||a+c<=b||b+c<=a)    printf("Case %ld: Invalid\n",i);    else if(a==b&&b==c&&c==a) printf("Case %ld: Equilateral\n",i);    else if(a==b&&a!=c) printf("Case %ld: Isosceles\n",i);    else if(a==c&&a!=b) printf("Case %ld: Isosceles\n",i);    else if(b==c&&b!=a) printf("Case %ld: Isosceles\n",i);    else if(a!=b&&a!=c&&b!=c) printf("Case %ld: Scalene\n",i);    i++;              }    }

 

转载于:https://www.cnblogs.com/sjy123/archive/2013/02/21/2920021.html

你可能感兴趣的文章
Ubuntu unity安装Indicator-Multiload
查看>>
解决Eclipse中新建jsp文件ISO8859-1 编码问题
查看>>
7.对象创建型模式-总结
查看>>
【论文阅读】Classification of breast cancer histology images using transfer learning
查看>>
移动端处理图片懒加载
查看>>
jQuery.on() 函数详解
查看>>
谈缓存和Redis
查看>>
【转】百度地图api,根据多点注标坐标范围计算地图缩放级别zoom自适应地图
查看>>
用户调研(补)
查看>>
ExtJS之开篇:我来了
查看>>
☆1018
查看>>
oracle 去掉空格
查看>>
6.13心得
查看>>
Runtime类
查看>>
eclipse decompiler
查看>>
记一个搜索网盘资源的网站
查看>>
jdk1.7和jdk1.8的String的getByte方法的差异
查看>>
java父子进程通信
查看>>
Android ADB server didn't ACK * failed to start daemon * 简单有效的解决方案
查看>>
Olap学习笔记
查看>>