if條件判斷語句

2021-08-03 19:14:22 字數 1808 閱讀 9666

如果表示式的值是true,則執行語句塊**,否則跳過語句塊。

.equals(" ") 下面的例子使用到的,可以看看。

字串判斷不能使用==,要使用方法。

==用來判斷記憶體位址是否相等。

輸入男女,輸出boy,girl

system.out.println("請輸入男or女:");

scanner sc=new scanner(system.in);

string ***=(string)sc.next();

if(***.equals("男"))

if(***.equals("女"))

年齡大於或者小於18...

system.out.println("請輸入你的年齡:");

scanner sc=new scanner(system.in);

int age=sc.nextint();

if(age>=18)

if(age<18)

0-5的隨機數,看運氣如何

double a=(math.random()*6);

double b=(math.random()*6);

double c=(math.random()*6);

int sum=(int)(a+b+c);

if(sum>15)

if(sum>=10 && sum<=15)

if(sum<10)

system.out.println("請輸入你的分數:");

scanner sc=new scanner(system.in);

double score=sc.nextdouble();

if(score>=80)

if(score>=70 && score<80)

if(score>=60 && score<70)

if(score<60)

晚上老師布置的作業分享一下,自己寫的。

//1.輸入乙個數,判斷是奇數還是偶數

/*system.out.println("請輸入乙個整數:");

double i=sc.nextdouble();

if(i%2==0)else

*//*2.根據考試成績輸出對應的禮物,90分以上爸爸給買電腦,80分以上爸爸給買手機, 60分以上爸爸請吃一頓大餐,60分以下爸爸給買學習資料。

要求:該題使用多重if完成

system.out.println("請輸入分數:");

double i = sc.nextdouble();

if(i>=90)else if(i>=80)else if(i>=60)else if(i<60)else

*//*

//3.輸入乙個5位數,判斷是否是回文數(12521,11211,89598)

system.out.println("請輸入乙個五位的整數:");

int num=sc.nextint();

if(num<100000&&num>9999)else}*/

//4.需求2:根據用於指定月份,列印該月份所屬的季節。    

//3,4,5 春季 6,7,8 夏季  9,10,11 秋季 12, 1, 2 冬季

system.out.println("請輸入月份:(1-12)");

int month=sc.nextint();

if(month>=3&&month<=5)

else if(month>=6&&month<=8)

else if(month>=9&&month<=11)

else if(month==12||month==2||month==1)



條件判斷語句

語法 if condition else if condition else示例 var age 20 if age 18 else語法 表示式1 表示式2 表示式3 如果表示式1的布林值為true,則執行表示式2,否則執行表示式3。是js語言中唯一乙個需要三個運算元的運算子。示例 var age ...

條件判斷語句

條件判斷語句 使用條件判斷語句可以在執行某個語句之前進行判斷,如果條件成立才會執行語句,條件不成立則語句不執行。if語句 語法一 if 條件表示式 if語句在執行時,會先對條件表示式進行求值判斷,如果條件表示式的值為true,則執行if後的語句,如果條件表示式的值為false,則不會執行if後的語句...

條件判斷語句

條件判斷語句 if語句 input簡介 input 方法暫停程式等待使用者輸入,獲取輸入並賦給乙個變數。input接受的引數都是字串 input會阻塞後面的程式 a input 請輸入 print 您輸入的值為 format a input輸入的值都是字串,因為python是一種強文字語言,不像ph...