Java Loops II

  • + 2 comments

    what's wrong with this? can you please tell me

    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 c = a + b * (int) Math.pow(2, j);
                    System.out.print(a + " ");
                    a = c;
                }
                System.out.println();
            }
            in.close();
        }
    }