package study5ran2yl.study; public class ForDemo01 { public static void main(String[] args) { int h; int l; for(h=1;h<10;h++) { for(l=1;l<=h;l++){ System.out.print(l+"*"+h+"="+l*h+"\t"); } System.out.println(); } } }