题解 2001: 边长判断

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

筛选

c语言代码解决问题

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

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

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

边长判断 (C语言代码)

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

普普通通的解题方法

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

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,&……

2001: 边长判断

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