Home > Java > javaTutorial > body text

How to use a for loop to output 99 multiplication tables in java

WBOY
Release: 2023-06-03 15:12:05
forward
2493 people have browsed it

The code is as follows:

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

The above is the detailed content of How to use a for loop to output 99 multiplication tables in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template