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 评论 172 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:把形成三角形的必要条件补充完整参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&…… 题解列表 2024年11月12日 0 点赞 0 评论 95 浏览 评分:0.0
python编写题解 2792: 三角形判断 摘要:解题思路:三角形的三边关系:任意两边之和大于第三边或者任意两边之差小于第三边。参考代码:a, b, c = map(int, input().split()) if a+b > c and a+c …… 题解列表 2024年03月07日 0 点赞 0 评论 235 浏览 评分:0.0
编写题解 2792: 三角形判断 摘要:解题思路:两个较短的边之和大于最长的那条边注意事项:参考代码:a=list(map(int,input().split()))a.sort()if a[0]+a[1]>a[2]: print(&…… 题解列表 2024年02月27日 0 点赞 0 评论 165 浏览 评分:10.0
编写题解 2792: 三角形判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,c; cin >>a>>b>>c; …… 题解列表 2024年02月05日 0 点赞 0 评论 126 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月06日 0 点赞 0 评论 158 浏览 评分:9.9
2792: 三角形判断 摘要:解题思路:注意事项:三角形两边之和大于第三边参考代码:#include <iostream>using namespace std;int main(){ int a,b,c; cin >…… 题解列表 2023年12月31日 0 点赞 0 评论 223 浏览 评分:9.9
编写题解 2792: 三角形判断 摘要:解题思路:两边之和大于第三边注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin…… 题解列表 2023年12月31日 0 点赞 0 评论 89 浏览 评分:0.0
编写题解 2792: 三角形判断,禁止抄答案,否则第2天被雷劈 摘要:解题思路:注意事项:禁止抄答案,否则第2天被雷劈参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b,s…… 题解列表 2023年12月31日 0 点赞 0 评论 128 浏览 评分:6.0