题解 2001: 边长判断

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

筛选

2001 keyide C语言加油

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

2001,好懂的方法

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

边长判断 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3]; int i,t,j; for(i=0;i<3;i++) { scanf("%d",&a[i……

题目有漏洞吧

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

边长的判断

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

2001: 边长判断

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

2001,好懂的方法

摘要:解题思路:勾股定理注意事项:或字符参考代码:#include <stdio.h>#include <math.h>int main(){      int a,b,c;    scanf("%d%d%……