0% found this document useful (0 votes)
34 views

Java Loops II: Input Format

The document describes a program that takes queries with values for n, a, and d and outputs the series generated by the formula an + d for each query up to the 10th term. For each query, it provides the values of n, a, and d, calculates the series based on those values up to the 10th term, and prints the terms separated by spaces on a new line. It gives sample input with two queries and the corresponding output printing the calculated series for each query.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views

Java Loops II: Input Format

The document describes a program that takes queries with values for n, a, and d and outputs the series generated by the formula an + d for each query up to the 10th term. For each query, it provides the values of n, a, and d, calculates the series based on those values up to the 10th term, and prints the terms separated by spaces on a new line. It gives sample input with two queries and the corresponding output printing the calculated series for each query.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Java Loops II

We use the integers , , and to create the following series:

You are given queries in the form of , , and . For each query, print the series corresponding to the
given , , and values as a single line of space-separated integers.

Input Format

The first line contains an integer, , denoting the number of queries.


Each line of the subsequent lines contains three space-separated integers describing the respective
, , and values for that query.

Constraints

Output Format

For each query, print the corresponding series on a new line. Each series must be printed in order as a
single line of space-separated integers.

Sample Input

2
0 2 10
535

Sample Output

2 6 14 30 62 126 254 510 1022 2046


8 14 26 50 98

Explanation

We have two queries:

1. We use , , and to produce some series :

... and so on.

Once we hit , we print the first ten terms as a single line of space-separated integers.

2. We use , , and to produce some series :


We then print each element of our series as a single line of space-separated values.

You might also like