import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//使用键盘输入三个数字 a、b 和 c(建议三角形的边长)。
//确定具有这些边的三角形是否存在。
//按如下所示显示结果:
//“三角形可能存在。”- 如果具有这些边的三角形可能存在。
//“三角形不可能存在。”- 如果具有这些边的三角形不可能存在。
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String a = reader.readLine();
String b = reader.readLine();
String c = reader.readLine();
int aInt = Integer.parseInt(a);
int bInt = Integer.parseInt(b);
int cInt = Integer.parseInt(c);
if(cInt>aInt+bInt) System.out.println("\"三角形不可能存在。\"");
else if(bInt>aInt+cInt) System.out.println("\"三角形不可能存在。\"");
else if(aInt>cInt+bInt) System.out.println("\"三角形不可能存在。\"");
else System.out.println("三角形可能存在。");
}
}
package zh.codegym.task.task04.task0415;
/*
三角形法则
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//使用键盘输入三个数字 a、b 和 c(建议三角形的边长)。
//确定具有这些边的三角形是否存在。
//按如下所示显示结果:
//“三角形可能存在。”- 如果具有这些边的三角形可能存在。
//“三角形不可能存在。”- 如果具有这些边的三角形不可能存在。
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String a = reader.readLine();
String b = reader.readLine();
String c = reader.readLine();
int aInt = Integer.parseInt(a);
int bInt = Integer.parseInt(b);
int cInt = Integer.parseInt(c);
if(cInt>aInt+bInt) System.out.println("\"三角形不可能存在。\"");
else if(bInt>aInt+cInt) System.out.println("\"三角形不可能存在。\"");
else if(aInt>cInt+bInt) System.out.println("\"三角形不可能存在。\"");
else System.out.println("三角形可能存在。");
}
}