package Chapter4;import javax.swing.JOptionPane;public class TestMultiplicationTable {/** Main method */public static void main(String[] args) {// Display the table headingString output = " Multiplication Table\n";output += "-------------------------------------------------\n";// Display the number titleoutput += " | ";for (int j = 1; j <= 9; j++)output += " " + j;output += "\n";// Print table bodyfor (int i = 1; i <= 9; i++) {output += i + " | ";for (int j = 1; j <= 9; j++) {// Display the product and align properlyif (i * j < 10)output += " " + i * j;elseoutput += " " + i * j;}output += "\n";}// Display resultJOptionPane.showMessageDialog(null, output);}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。