九九乘法表
程序员文章站
2024-03-23 18:25:22
...
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner input = new Scanner(System.in);
while (input.hasNextInt()) {
int n = input.nextInt();
int i, j;
for (i = 1; i <= n; i++) {
for (j = 1; j < i; j++) {
System.out.print(j + "*" + i + "=" + (i * j) + " ");// 调换一下i与j的位置
}
System.out.print(j + "*" + i + "=" + (i * j) + "\n");
}
}
}
}
上一篇: WINDOWS下查看MySQL的配置文件my.ini默认位置的命令
下一篇: 判断成绩