九九乘法表(Java入门)

    科技2022-08-09  115

    public class chengfabiao { public static void main(String[] args) { for (int i = 1 ; i <= 9 ; i ++) { for (int j = 1 ; j <=9 ; j ++) { System.out.println("\t"+i+"*"+j+"="+i*j); } } } }
    Processed: 0.012, SQL: 8