使用java编写九九乘法表

xiaoxiao2021-02-28  37

package javaselearn; public class Jiujiuchengfa { public static void main(String[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= i; j++) { System.out.print(j + "*" + i + "=" + i * j + "\t"); } System.out.println(); } } }
转载请注明原文地址: https://www.6miu.com/read-2632750.html

最新回复(0)