题解 | #三角形判断#

三角形判断

https://www.nowcoder.com/practice/689ec1e742394e09b1059556fc167b65

#include <stdio.h>

int main() {
    int a, b,c;
    while (scanf("%d %d %d", &a, &b,&c) != EOF) { // 注意 while 处理多个 case
        // 64 位输出请用 printf("%lld") to 
        if((a+b>c)&&(a+c>b)&&(b+c>a)){
            if ((a==b)||(a==c)||(b==c)) {

                if ((a==b)&&(a==c)) {
                    printf("Equilateral triangle!\n");
                    continue;
                }
                printf("Isosceles triangle!\n");
                continue;
                
            
            }
            printf("Ordinary triangle!\n");
            continue;

        }
        else {
            printf("Not a triangle!\n");
            continue;
        
        }
    }
    return 0;
}

全部评论

相关推荐

点赞 评论 收藏
分享
可以不说话:笔试a了3道半,今天说是挂了😭😭
投递汇丰科技等公司8个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务