KnowledgeBoat Logo

Java Series Programs

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

4, 8, 16, 32,

Java

Java Iterative Stmts

ICSE

65 Likes

Answer

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

Output

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

Answered By

31 Likes