JAVA程式練習
儲存程式碼範例
顯示具有
Do-While
標籤的文章。
顯示所有文章
顯示具有
Do-While
標籤的文章。
顯示所有文章
2016年11月27日 星期日
do while迴圈九九乘法表
public
class
hw5_11 {
public
static
void
main(String[] args){
int
y=
1
;
do
{
int
x=
1
;
do
{ System.
out
.print(y+
"*"
+x+
"="
+(x*y)+
"\t"
); x++; }
while
(x<=
9
); System.
out
.println(); y++; }
while
(y<=
9
); } }
較舊的文章
首頁
訂閱:
文章 (Atom)