练习:九九乘法表 (26th,Feb)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习:九九乘法表 (26th,Feb)相关的知识,希望对你有一定的参考价值。
public class MulitiplicationTable
{ public static void main(String[] args)
{ //九九乘法表 for(int m=1;m<=9;m++) //行 { for(int n=1;n<=m;n++) //列 { System.out.print(m+"*"+n+"="+m*n+"\t"); } System.out.println(); } } }
输出结果:
以上是关于练习:九九乘法表 (26th,Feb)的主要内容,如果未能解决你的问题,请参考以下文章