国产精品天干天干,亚洲毛片在线,日韩gay小鲜肉啪啪18禁,女同Gay自慰喷水

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

if結(jié)構(gòu)使用

2022-06-03 17:08 作者:虛云幻仙  | 我要投稿

/**
* 測試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("壽星");
? ? ? ?}
? ?}
}

if結(jié)構(gòu)使用的評論 (共 條)

分享到微博請遵守國家法律
明光市| 友谊县| 清水河县| 陆丰市| 江陵县| 黄梅县| 凤山县| 乡城县| 静乐县| 乌拉特后旗| 扶余县| 泰来县| 眉山市| 普定县| 肇庆市| 濮阳市| 绍兴市| 浮山县| 托里县| 临猗县| 隆林| 昌黎县| 尼木县| 偃师市| 西丰县| 吐鲁番市| 江华| 右玉县| 会泽县| 太仓市| 南木林县| 永丰县| 观塘区| 房产| 潞西市| 明星| 日照市| 霍城县| 临夏县| 新宁县| 和政县|