最新回答 / 廾匸
因為每個月是4周,我們要算出是第幾個月,就用第幾周除以4就好啦,不過我們還要考慮int只能存儲整形,所以當有余數(shù)的時候就再加上1,比如是第五天,int型的5/4就會余下來一周,那么這一周已經(jīng)是下一個月的了,所以加上1就好啦!
2022-12-09
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
do{
if(num<=0){
break;
}
num = num/10;
count++;
}while(num>0);
System.out.println("它是個"+count+"位的數(shù)!");
}
}
public static void main(String[] args){
int num = 999;
int count = 0;
do{
if(num<=0){
break;
}
num = num/10;
count++;
}while(num>0);
System.out.println("它是個"+count+"位的數(shù)!");
}
}
2022-11-30
最新回答 / 慕絲3076412
Intellij IDEA下載https://www.jetbrains.com/idea/download/#section=windowsJDK下載https://www.oracle.com/java/technologies/downloads/#java8-windows
2022-11-24
最新回答 / 慕先生2348631
public class HelloWorld{? ? public static void main(String[] args) {? ? int one = 10 ;? ? ? ? int two = 20 ;? ? ? ? int three=0;? ? ? ? three=one+two;? ? ? ? System.out.println("three=one+two==>"+three);? ? ? ? three+=one;? ? ? ? ((SYstm)).out.println(...
2022-11-24
最新回答 / 比奇堡大亨
老師,我想問一下IntelliJ IDEA Community Edition 這款軟件可以切換成中文模式嗎?我這是下載的2023版本的軟件有些功能排放的位置與授課教程中演示的大相同,每次都要進行翻譯搜索??
2022-11-19
最新回答 / weixin_慕仙6110259
不好意思 我懂了,i不到10的時候 sum已經(jīng)大于20了,因為沒有退出循環(huán),所以i還在增加,循環(huán)還在繼續(xù)
2022-11-19
public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
for(;num>1;num=num/10){
count=count+1;
}
System.out.println("它是個"+count+"位的數(shù)!");
}
}
最簡單沒有之一
public static void main(String[] args){
int num = 999;
int count = 0;
for(;num>1;num=num/10){
count=count+1;
}
System.out.println("它是個"+count+"位的數(shù)!");
}
}
最簡單沒有之一
2022-11-13
最新回答 / 慕函數(shù)7131464
17行count已經(jīng)被定義過,你就不能再用了,改成i好一些public class HelloWorld {? ? public static void main(String[] args) {? ? ? ??? ? ? ? // 變量保存成績? ? ? ? int score = 53;?? ? ? ??? ? ? ? // 變量保存加分次數(shù)? ? ? ? int count = 0;? ? ? ??? ? ? ? //打印輸出加分前成績?? ? ? ? ??? ? ? ?System.out.pri...
2022-10-22