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); } }

沒有留言:

張貼留言