最新回答 / weixin_慕絲3555851
char:本身是一個基本數(shù)據(jù)類型,存儲的是字符的原始值,不是對象,不存在可變性的概念。String:是一個對象,具有不可變性。一旦創(chuàng)建了一個?String?對象,它的內(nèi)容就不能被修改。任何對?String?的修改操作實際上都會創(chuàng)建一個新的?String?對象。
2023-04-04
public class HelloWorld{
public static void main(String[] args){
System.out.println("1212");
}
}
public static void main(String[] args){
System.out.println("1212");
}
}
2023-03-30
public class HelloWorld{
pubilc stastic void main(String[] args){
System.out println(''Hello World'');
}
}
System的首字母要大寫,String的首字母也要大寫
pubilc stastic void main(String[] args){
System.out println(''Hello World'');
}
}
System的首字母要大寫,String的首字母也要大寫
2023-03-20
最簡單的做法,給大家參考一下
public class HelloWorld{
public static void main(String[] args){
int num = 9999;
int count = 0;
char ccount;
while(num/10>0){
count+=1;
num=num/10;
}
count+=1;
System.out.println("它是個"+count+"位的數(shù)!");
}
}
public class HelloWorld{
public static void main(String[] args){
int num = 9999;
int count = 0;
char ccount;
while(num/10>0){
count+=1;
num=num/10;
}
count+=1;
System.out.println("它是個"+count+"位的數(shù)!");
}
}
2023-03-16
最新回答 / 慕設(shè)計7559726
你輸出的結(jié)果和題目要求的不一樣啊,題目要求的是最終結(jié)果為吃主席套餐,你可以把char today的值改成日,或者把吃主席套餐的位置和吃包子互換,只要結(jié)果是吃主席套餐就好了public class HelloWorld {? ? public static void main(String[] args) { char today='日'; switch(today){ ? ? case '一': ? ? case '三': ? ? ? ? case '五': ? ? ? ? ? ? System....
2023-03-02