KnowledgeBoat Logo

Computer Applications

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

1, 2, 4, 7, 11,

Java

Java Iterative Stmts

ICSE

212 Likes

Answer

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

Output

BlueJ output of Write the program in Java to display the first ten terms of the following series: 1, 2, 4, 7, 11,

Answered By

104 Likes


Related Questions