2792-普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta,b,c;scanf("%d%d%d",&a,&b,&…… 题解列表 2024年11月23日 0 点赞 0 评论 48 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:把形成三角形的必要条件补充完整参考代码:#include<stdio.h>intmain(){ inta,b,c;&nbs…… 题解列表 2024年11月12日 0 点赞 0 评论 46 浏览 评分:0.0
与运算完成三角形判断 摘要:解题思路: &…… 题解列表 2024年03月07日 0 点赞 0 评论 98 浏览 评分:0.0
python编写题解 2792: 三角形判断 摘要:解题思路:三角形的三边关系:任意两边之和大于第三边或者任意两边之差小于第三边。参考代码:a, b, c = map(int,&a…… 题解列表 2024年03月07日 0 点赞 0 评论 155 浏览 评分:0.0
编写题解 2792: 三角形判断 摘要:解题思路:两个较短的边之和大于最长的那条边注意事项:参考代码:a=list(map(int,input().split()))a.sort()ifa[0]+a[1]>a[2]: …… 题解列表 2024年02月27日 0 点赞 0 评论 86 浏览 评分:9.9
编写题解 2792: 三角形判断 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ inta,b,c;&…… 题解列表 2024年02月05日 0 点赞 0 评论 90 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main{ &…… 题解列表 2024年01月06日 0 点赞 0 评论 115 浏览 评分:9.9
2792: 三角形判断 摘要:解题思路:注意事项:三角形两边之和大于第三边参考代码:#include<iostream>usingnamespacestd;intmain(){ i…… 题解列表 2023年12月31日 0 点赞 0 评论 175 浏览 评分:9.9
编写题解 2792: 三角形判断 摘要:解题思路:两边之和大于第三边注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){  …… 题解列表 2023年12月31日 0 点赞 0 评论 61 浏览 评分:0.0
编写题解 2792: 三角形判断,禁止抄答案,否则第2天被雷劈 摘要:解题思路:注意事项:禁止抄答案,否则第2天被雷劈参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ &…… 题解列表 2023年12月31日 0 点赞 0 评论 87 浏览 评分:6.0