You are viewing a single comment's thread. Return to all comments →
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 aux=1; int sum=a; int compteur =0; while(compteur<n){ sum+=aux*b; System.out.printf(sum+" "); aux*=2; compteur++; } System.out.println(); } in.close(); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Java Loops II
You are viewing a single comment's thread. Return to all comments →