KnowledgeBoat Logo

Java Series Programs

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

4, 16, 36, 64,

Java

Java Iterative Stmts

ICSE

50 Likes

Answer

public class KboatSeries
{
    public static void main(String args[]) {
        for (int i = 2; i <= 20; i = i + 2) {
            System.out.print((i * i) + " ");
        }
    }
}

Output

BlueJ output of Write the program in Java to display the first ten terms of the following series: 4, 16, 36, 64,

Answered By

23 Likes