题解 2001: 边长判断

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a, b, c;    scanf("%d %d %d", &a, &b, &c);    if ……

2001简介有高神的C语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c;scanf ("%d %d %d",&a,&b,&c);   if (a*a+b*b==……

题目有漏洞吧

摘要:解题思路:本来还要判断两边之和大于第三边,没想到不用,这是为什么,请问,这样就一定能成为三角形吗?是不是题目有漏洞?注意事项:参考代码:##l=list(map(int,input().split()……

边长判断-题解(C语言代码)

摘要:解题思路:运用逻辑运算符进行计算注意事项:参考代码:#include<stdio.h> #include<string.h> int main() {     int a[3],i = 0……

边长的判断

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b,c;    cin>>a>>b>>c;    i……

边长判断-题解(Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a……

2001: 边长判断

摘要:## if判断 ```c++ #include using namespace std; int main() { int a,b,c; cin>>a>>b>>c; ……