if結(jié)構(gòu)使用
/**
* 測試if結(jié)構(gòu)與隨機(jī)數(shù)
* 擲三個骰子
* if(條件即布爾表達(dá)式){執(zhí)行內(nèi)容}
*/
public class TestIf01 {
? ?public static void main(String[] args) {
? ? ? ?double rand = Math.random();//Math中的random隨機(jī)生成0-1之間的浮點(diǎn)數(shù)
? ? ? ?System.out.println(rand);
? ? ? ?int rand1 = (int)(rand*6+1);
? ? ? ?System.out.println(rand1);
? ? ? ?int i = (int)(Math.random()*6+1);
? ? ? ?int j = (int)(Math.random()*6+1);
? ? ? ?int k = (int)(Math.random()*6+1);
? ? ? ?if(i+j+k>15){
? ? ? ? ? ?System.out.println("手氣不錯");
? ? ? ?} else if (i+j+k>10) {
? ? ? ? ? ?//不滿足>15時繼續(xù)判定是否>10
? ? ? ? ? ?System.out.println("一般");
? ? ? ?}else {
? ? ? ? ? ?//上面條件均false執(zhí)行else的語句塊
? ? ? ? ? ?System.out.println("手氣不佳");
? ? ? ?}
? ? ? ?System.out.println("總點(diǎn)數(shù):"+(i+j+k));
? ? ? ?double r = 4*Math.random();
? ? ? ?double area1 = Math.PI*r*r;//Math中的PI指圓周率
? ? ? ?double a1 = 12*Math.random();
? ? ? ?double a2 = 4*Math.random();
? ? ? ?double area2 = a1*a2;
? ? ? ?double a3 = area1>area2?area1:area2;//條件運(yùn)算符和if同理
? ? ? ?System.out.println(a3);
? ? ? ?int age = (int)(120*Math.random());
? ? ? ?System.out.println("年齡是:"+age);
? ? ? ?if(age<18){
? ? ? ? ? ?System.out.println("未成年");
? ? ? ?} else if (age<=35) {
? ? ? ? ? ?System.out.println("輕年");
? ? ? ?} else if (age<=50) {
? ? ? ? ? ?System.out.println("中年");
? ? ? ?} else if (age<=84) {
? ? ? ? ? ?System.out.println("老年");
? ? ? ?}else {
? ? ? ? ? ?System.out.println("壽星");
? ? ? ?}
? ?}
}