2792: 三角形判断 摘要:#include<stdio.h>//函数用于判断三条边能否构成三角形intcan_form_triangle(inta,&nb…… 题解列表 2025年03月18日 0 点赞 0 评论 116 浏览 评分:0.0
2792-普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if ( a + b > c && …… 题解列表 2024年11月23日 0 点赞 0 评论 214 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:把形成三角形的必要条件补充完整参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&…… 题解列表 2024年11月12日 0 点赞 0 评论 121 浏览 评分:0.0
python编写题解 2792: 三角形判断 摘要:解题思路:三角形的三边关系:任意两边之和大于第三边或者任意两边之差小于第三边。参考代码:a, b, c = map(int, input().split()) if a+b > c and a+c …… 题解列表 2024年03月07日 0 点赞 0 评论 317 浏览 评分:0.0
编写题解 2792: 三角形判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,c; cin >>a>>b>>c; …… 题解列表 2024年02月05日 0 点赞 0 评论 155 浏览 评分:0.0
编写题解 2792: 三角形判断 摘要:解题思路:两边之和大于第三边注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin…… 题解列表 2023年12月31日 0 点赞 0 评论 114 浏览 评分:0.0
2792: 三角形判断 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>…… 题解列表 2023年11月11日 0 点赞 0 评论 119 浏览 评分:0.0
三角函数判断简单版本 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年11月01日 0 点赞 0 评论 153 浏览 评分:0.0
三角形判断(C++) 摘要:解题思路:双边和必须大于一边注意事项:参考代码:#include<cstdio> using namespace std; int main(){ int a,b,c; scanf("%d…… 题解列表 2022年12月02日 0 点赞 0 评论 169 浏览 评分:0.0