課程
/后端開(kāi)發(fā)
/Java
/Java入門(mén)第一季(IDEA工具)升級(jí)版
編程題4-1答案
2016-10-08
源自:Java入門(mén)第一季(IDEA工具)升級(jí)版 4-1
正在回答
public class HekloWord { ??? public static void main ( String?????? [] args ) { ??????? int one = 20; ??????? int newOne = one%2; ??????? if ( newOne == 0) { ????????? System.out.println( "one是偶數(shù)" ) ??????? } ??? } }
public?class?HelloWorld?{ ????public?static?void?main(String[]?args)?{ ????????int?one?=?20?; ???? ????????if?(one?%?2?==?0) ????????????System.out.println("one是偶數(shù)"); ???????????? ????} }
one是偶數(shù)
你的問(wèn)題是什么?
LVSIYANG 提問(wèn)者
ziom 回復(fù) LVSIYANG 提問(wèn)者
LVSIYANG 提問(wèn)者 回復(fù) ziom
舉報(bào)
0基礎(chǔ)萌新入門(mén)第一課,從Java環(huán)境搭建、工具使用、基礎(chǔ)語(yǔ)法開(kāi)始
1 回答Java條件語(yǔ)句之嵌套 if
3 回答Java條件語(yǔ)句之多重 if
1 回答Java條件語(yǔ)句
4 回答條件語(yǔ)句if...else
3 回答條件語(yǔ)句-多重if
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢(xún)優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2016-10-08
public class HekloWord {
??? public static void main ( String?????? [] args ) {
??????? int one = 20;
??????? int newOne = one%2;
??????? if ( newOne == 0) {
????????? System.out.println( "one是偶數(shù)" )
??????? }
??? }
}
2016-10-08
2016-10-08
one是偶數(shù)
2016-10-08
你的問(wèn)題是什么?