KnowledgeBoat Logo

Java Series Programs

Write the program in Java to display the first ten terms of the following series:

1, 12, 123, 1234,

Java

Java Iterative Stmts

ICSE

38 Likes

Answer

public class KboatSeries
{
    public void generateSeries() {
        
        for (int i = 1; i <= 10; i++) {
            for (int j = 1; j <= i; j++) {
                System.out.print(j);
            }
            System.out.print(", ");
        }
        
    }
}

Output

BlueJ output of Write the program in Java to display the first ten terms of the following series: 1, 12, 123, 1234,

Answered By

20 Likes