如何使這個簡單的程序,以顯示我的答案只有一個,如果多個條件滿足像只顯示一個syso:如果年齡< 16 syso(」你不能租車「),如果年齡< 18 syso(」你不能投票「)。不知道如何,如果我有更多的「如果」誰是滿意
例如,如果我介紹17我只想顯示(「你不能投」)否(「你不能投票」和「你不能租汽車」)。
我試圖用「& &」這兩個條件來粘貼,它沒有用。從評論
代碼
import java.util.Scanner;
public class Assign1 {
public static void main(String[] args) {
Scanner x = new Scanner(System.in);
int age;
System.out.println("Insert age ");
age = x.nextInt();
if (age<16) {
System.out.println("You can't drive");
}
if (age<18 && age<16) {
System.out.println("You can't vote");
}
if (age<25) {
System.out.println("You can't rent cars");
}
if (age>25) {
System.out.println("You can do anything ");
}
}
}
顯示你已經試過什麼一些代碼。 – Andreas
我試圖把代碼放在我的問題中,但這就是爲什麼該網站不讓我......「您的文章似乎包含代碼格式不正確的代碼,請使用代碼將所有代碼縮進4個空格工具欄按鈕或CTRL + K鍵盤快捷鍵。有關更多編輯幫助,請單擊[?]工具欄圖標。「 – Stock
這是我的嘗試:如果(年齡<18)&&如果(年齡> 16){ \t \t的System.out.println( 「你不能投」); \t} \t if(age <25){ \t \t System.out.println(「您不能租車」); – Stock