KnowledgeBoat Logo

Java Series Programs

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

1.5, 3.0, 4.5, 6.0,

Java

Java Iterative Stmts

ICSE

63 Likes

Answer

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

Output

BlueJ output of Write the program in Java to display the first ten terms of the following series: 1.5, 3.0, 4.5, 6.0,

Answered By

32 Likes