KnowledgeBoat Logo

Computer Applications

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

1, 9, 25, 49,

Java

Java Iterative Stmts

ICSE

61 Likes

Answer

public class KboatSeries
{
    public static void main(String args[]) {
        for (int i = 1; i <= 19; 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: 1, 9, 25, 49,

Answered By

37 Likes


Related Questions