學會利用java程式編寫“隨機輸入三角形的三邊,判斷是否能構成三角形“
阿新 • • 發佈:2019-01-06
package javas;
import java.util.Scanner;
public class TriAngle {
public static void main(String[] args) { // TODO Auto-generated method stub int a,b,c; System.out.println("請輸入三角形的三條邊:"); Scanner sc=new Scanner(System.in); System.out.print("a="); a=sc.nextInt(); System.out.print("b="); b=sc.nextInt(); System.out.print("c="); c=sc.nextInt(); if((a+b)>c&&(a+c)>b&&(b+c)>a) System.out.println(a+","+b+","+c+"能構成三角形"); else System.out.println(a+","+b+","+c+"不能構成三角形"); }
}
執行結果如下圖所示
通過編寫這個程式,讓我學會了if,eles語句的用法。
qbasic中的if語句和其他的程式語言比較一致,基本上都是 if……then……else……結構。其中if……then……是必須的,其中if後面的條件可以使用and、or 的多條件結構,if語句和else後面也可以跟隨if語句的巢狀。