DEV Community

Cover image for Java Series Iterations
Scott Gordon
Scott Gordon

Posted on

1

Java Series Iterations

/*
series.java
    This program prints a series of numbers for each iteration of 
    t so that a, b and n create the series.
by: Scott Gordon
*/
import java.util.*;
import java.io.*;

class Solution{
    public static void main(String []argh){
        Scanner in = new Scanner(System.in);
        int t=in.nextInt();
        for(int i=0; i<t; i++){
            int a = in.nextInt();
            int b = in.nextInt();
            int n = in.nextInt();
            int x = a;
            for(int j=0; j<n; j++){
                x += b * Math.pow(2, j);
                System.out.print(x + " ");
            }
            System.out.println();
        }
        in.close();
    }

Enter fullscreen mode Exit fullscreen mode

Photo by Jonas Jacobsson on Unsplash

Heroku

Build apps, not infrastructure.

Dealing with servers, hardware, and infrastructure can take up your valuable time. Discover the benefits of Heroku, the PaaS of choice for developers since 2007.

Visit Site

Top comments (0)

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay