单循环九九循环表

public class Nine9 {
	public static void main(String[] args)
	{
		for(int i=1,j=1;j<=9;i++)
		{
			System.out.print(i+" * "+j+" =" +i*j+" ");
			if(i == j){
				i = 0;
				j++;
				System.out.println();
			}
		}
	}
}

你可能感兴趣的:(循环)