for循环的应用

使用for循环输出九九乘法表:

public class sadnkasjd {
	public static void main(String[] args) {
		for(int i=1;i<=5;i++){
			for(int j=1;j<=i;j++){
				System.out.print(j+"*"+i+"="+i*j+"	");
			
			}
			System.out.println();
		}
        }
}
原文地址:https://www.cnblogs.com/zyn0216/p/7444448.html