首页 > 其他分享 >用for打印九九乘法表

用for打印九九乘法表

时间:2022-10-27 13:44:30浏览次数:87  
标签:九九乘法 int 打印 System public out

package com.jiemo.struct;
public class ForShabi4 {
public static void main(String[] args) {
//1.先打印第一列
//2.把固定的i再用一个循环包起来
//3.去掉重复项,i<=j
//4.调整样式
for (int j = 0; j <= 9; j++) {
for (int i = 1; i <=j; i++) {
System.out.print(j+"*"+i+"="+(j*i)+"\t"); }
System.out.println();
} } }

标签:九九乘法,int,打印,System,public,out
From: https://www.cnblogs.com/290114lyp/p/16831923.html

相关文章