幫忙看一下哪里錯了,謝謝
public class HelloWorld {
? ?public static void main(String[] args) {
? int args="18";
? if (args>=18){
? ? ? System.out.println("成年");
? }
? else?
? {
? ? ? System.out.println("未成年");
? }
? ? ? ?
? ?}
public class HelloWorld {
? ?public static void main(String[] args) {
? int args="18";
? if (args>=18){
? ? ? System.out.println("成年");
? }
? else?
? {
? ? ? System.out.println("未成年");
? }
? ? ? ?
? ?}
2019-10-18
舉報
2019-10-18
第三行的18不應(yīng)該加引號呀
2019-10-19
不用加雙引號哦,那是字符串類型數(shù)據(jù)才加
2019-10-19
int錯了他不是字符串類型的是輸出整數(shù),應(yīng)該你可以換String
2019-10-18
int args="18"? ?這里錯了,int類型是整形,不用打“”符號