JAVA程式練習
儲存程式碼範例
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)
沒有留言:
張貼留言