KnowledgeBoat Logo

Java Series Programs

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

0, 7, 26,

Java

Java Iterative Stmts

ICSE

84 Likes

Answer

public class KboatSeries
{
    public static void main(String args[]) {
        for (int i = 1; i <= 10; i++) {
            int term = (int)(Math.pow(i, 3) - 1);
            System.out.print(term + " ");
        }
    }
}

Output

BlueJ output of Write the program in Java to display the first ten terms of the following series: 0, 7, 26,

Answered By

42 Likes