You are viewing a single comment's thread. Return to all comments →
Here are my few different solutions in Java. 100% all test cases will pass
I hope you will find my answer useful.
Hackerrank Java Loops II 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 a = in.nextInt(); int b = in.nextInt(); int n = in.nextInt(); int c = a; for(int j=0;j<n;j++){ c += Math.pow(2, j)*b; System.out.printf("%s ",c); } 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 →
Here are my few different solutions in Java. 100% all test cases will pass
I hope you will find my answer useful.
Hackerrank Java Loops II Solution