KnowledgeBoat Logo

Computer Applications

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

3, 6, 9, 12,

Java

Java Iterative Stmts

ICSE

63 Likes

Answer

public class KboatSeries
{
    public static void main(String args[]) {
        for (int i = 3; i <= 30; i = i + 3) {
            System.out.print(i + " ");
        }
    }
}

Output

BlueJ output of Write the program in Java to display the first ten terms of the following series: 3, 6, 9, 12,

Answered By

35 Likes


Related Questions