-
Notifications
You must be signed in to change notification settings - Fork 0
/
Java Loops II
38 lines (32 loc) · 957 Bytes
/
Java Loops II
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* We use the integers a, b,c and to create the following series:
You are given queries in the form ofa , b, cand . For each query, print the series corresponding to the given a ,b ,c and values as a single line of space-separated integers.
Sample Input
2
0 2 10
5 3 5
Sample Output
2 6 14 30 62 126 254 510 1022 2046
8 14 26 50 98
code
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();
for(int j=0;j<n;j++){
int result=a;
for(int k=0;k<=j;k++){
result+=Math.pow(2, k)*b;
}
System.out.print(result+" ");
}
System.out.println();
}
in.close();
}
}