JAVA LOOPS ||


 
HACKER RANK

(JAVA LOOPS 2 )










SOLUTION


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 result = 0;
            int a = in.nextInt();
            int b = in.nextInt();
            int n = in.nextInt();
        for (int j = 0; j < n; j++ ){
                    if(j==0){
                        result = result + (a + (int)Math.pow(2,j) * b);
                    }
                    else{
                        result = result + ((int)Math.pow(2,j) * b);
                    }
                    System.out.print(result+" ");
                }
                System.out.println();
            }




! THANK YOU !


Comments

Popular posts from this blog

JAVA STDIN AND STDOUT

JAVA STDIN AND STDOUT II