2792: 三角形判断 摘要:#include<stdio.h>//函数用于判断三条边能否构成三角形intcan_form_triangle(inta,&nb…… 题解列表 2025年03月18日 0 点赞 0 评论 632 浏览 评分:0.0
Python由边长判断三角形 摘要:解题思路:将三边两两之和与最常边比较,均大于最长边则是三角形的三边注意事项:表作为函数参数参考代码:def max_list(a): mx=a[0] …… 题解列表 2026年04月23日 0 点赞 0 评论 54 浏览 评分:0.0
编写题解 2792: 三角形判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,c; cin >>a>>b>>c; …… 题解列表 2024年02月05日 0 点赞 0 评论 450 浏览 评分:0.0
编写题解 2792: 三角形判断 摘要:解题思路:两边之和大于第三边注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin…… 题解列表 2023年12月31日 0 点赞 0 评论 362 浏览 评分:0.0
三角函数判断简单版本 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年11月01日 0 点赞 0 评论 407 浏览 评分:0.0
三角形判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdbool.h>#include <math.h>int main(){ int a, b, c; …… 题解列表 2023年10月19日 0 点赞 0 评论 413 浏览 评分:0.0
三角形判断 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2023年06月03日 0 点赞 0 评论 406 浏览 评分:0.0
2792: 三角形判断 摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input().strip().split())if a + b > c and a + c > b and b + c > a: …… 题解列表 2022年12月04日 0 点赞 0 评论 634 浏览 评分:0.0
三角形判断(C++) 摘要:解题思路:双边和必须大于一边注意事项:参考代码:#include<cstdio> using namespace std; int main(){ int a,b,c; scanf("%d…… 题解列表 2022年12月02日 0 点赞 0 评论 401 浏览 评分:0.0