输九九乘법表。
public class example16 {
public static void main(String[] args) {
table(9);
}
public static void table(int n) {
for (int i = 1; i for (int j = 1; j <= i; j++) {
System.out.print(j + "*" + i + "=" + j * i+ "t");
}
System.out.println();
}
}
}
위 내용은 Java 고전적인 프로그래밍 질문 - 99개의 구구단의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!