用java实现的乘法口诀

来源:互联网 发布:手机自动签到软件 编辑:程序博客网 时间:2024/05/16 16:17
//乘法口诀class ChengFaBiao {public static void main(String[] args) {for(int x = 1; x <= 9; x++){for(int y = 1; y <= x; y++){System.out.print(y+"*"+x+"="+x*y+"\t");}System.out.println();}}}


上机感言:感觉java挺简单的