最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(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)使用的評論 (共 條)

分享到微博請遵守國家法律
乃东县| 连城县| 新津县| 房产| 塔城市| 民丰县| 梓潼县| 锦州市| 高青县| 司法| 西青区| 棋牌| 柞水县| 邹城市| 蒲江县| 漾濞| 监利县| 兰考县| 长丰县| 阿拉尔市| 濮阳县| 建瓯市| 青海省| 东兰县| 武宁县| 慈溪市| 桃园市| 乐平市| 西畴县| 土默特左旗| 晋江市| 改则县| 平山县| 康乐县| 涿鹿县| 乡宁县| 汉川市| 高碑店市| 铜川市| 高尔夫| 甘谷县|