使用Java編寫九九乘法表

public class table { public static void main(String[] args) { for (int x = 1; x<=9 ; x++){//控制行數 for (int y = 1; y<=x;y++){ int result = x*y; System.out.pri
相關文章
相關標籤/搜索