首页 > 试题广场 >

判断三角形类型

[编程题]判断三角形类型
  • 热度指数:7083 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
给定三角形的三条边,a,b,c。判断该三角形类型。

输入描述:
测试数据有多组,每组输入三角形的三条边。


输出描述:
对于每组输入,输出直角三角形、锐角三角形、或是钝角三角形。
示例1

输入

3 4 5

输出

直角三角形
头像 PH_Lens
发表于 2020-03-03 22:06:37
利用C语言的qsort库函数对三条边进行排序 #include <stdio.h> #include <stdlib.h> int compare(const void* a,const void* b){ return (*(int*)a-*(int*)b); } 展开全文
头像 牛客440904392号
发表于 2024-10-03 10:26:34
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(S 展开全文
头像 笑川不吃香菜
发表于 2024-03-15 14:52:59
#include <bits/stdc++.h> using namespace std; int main() { int arr[3]; cin>>arr[0]>>arr[1]>>arr[2]; sort(arr,arr+ 展开全文
头像 kelell
发表于 2023-02-15 18:01:20
#include <iostream> using namespace std; int main() { int a, b, c;int temp; while(cin>>a>>b>>c){ int angle[3] 展开全文
头像 Brillianman
发表于 2023-02-14 11:08:25
#include <stdio.h> #include<math.h> int main() { double a, b, c; while (scanf("%lf %lf %lf", &a, &b, &c) != EOF) 展开全文

问题信息

难度:
56条回答 11818浏览

热门推荐

通过挑战的用户

查看代码
判断三角形类型