標題:
207-三角形邊長判斷
[打印本頁]
作者:
許承鴻
時間:
2018-6-26 18:40
標題:
207-三角形邊長判斷
import java.util.*;
public class JPA02 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
static void test() {
}
}
作者:
張閎鈞
時間:
2018-6-26 19:03
import java.util.Scanner;
public class JPA01 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
static void test() {
System.out.print("請輸入三個整數:") ;
int a=keyboard.nextInt();
int b=keyboard.nextInt();
int c=keyboard.nextInt();
if(a+b>c&&c+b>a&&a+c>b&&a!=0&b!=0&&c!=0)
{
if(a*a+b*b==c*c||c*c+b*b==a*a||a*a+c*c==b*b)
{
System.out.println("直角三角形") ;
}
else if(a*a+b*b<c*c||c*c+b*b<a*a||a*a+c*c<b*b)
{
System.out.println("頓角三角形") ;
}
else
{
System.out.println("銳角三角形") ;
}
}
else
{
System.out.println("不可以構成三角形") ;
}
}
}
複製代碼
作者:
巫沛庭
時間:
2018-6-26 19:05
package test;
import java.util.Scanner;
public class JPA02 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
test();
test();
test();
test();
}
static void test() {
System.out.print("請輸入三個整數 : ");
int a=keyboard.nextInt();
int b=keyboard.nextInt();
int c=keyboard.nextInt();
if(a+b>c && a+c>b && b+c>a)
{
if(a*a+b*b==c*c ||a*a+c*c==b*b ||b*b+c*c==a*a)
{
System.out.println("直角三角形");
}
else if(a*a+b*b<c*c ||a*a+c*c<b*b ||b*b+c*c<a*a)
{
System.out.println("鈍角三角形");
}
else if(a*a+b*b>c*c ||a*a+c*c>b*b ||b*b+c*c>a*a)
{
System.out.println("銳角三角形");
}
}
else{
System.out.println("不可構成三角形");
}
}
}
複製代碼
作者:
巫晉宇
時間:
2018-6-26 19:23
package jihgh;
import java.util.Scanner;
public class dbxdbff {
static Scanner k = new Scanner(System.in);
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
test();
test();
test();
test();
}
private static void test() {
System.out.print("請輸入三個數字");
int a=k.nextInt();
int b=k.nextInt();
int c=k.nextInt();
if(a+b>c && a+c>b && b+c>a)
{
if(a*a+b*b==c*c || c*c+a*a==b*b || c*c+b*b==a*a)
{
System.out.println("直角三角形");
}
else if(a*a+b*b<c*c || c*c+a*a<b*b || c*c+b*b<a*a)
{
System.out.println("頓角三角形");
}
else
{
System.out.println("瑞角三角形");
}
}
else
{
System.out.print("不可構成三角形");
}
}
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2