Skip to content

Instantly share code, notes, and snippets.

@hendisantika
Created February 15, 2019 04:13
Show Gist options
  • Save hendisantika/f817a74fd115416fcaecfae280d7b047 to your computer and use it in GitHub Desktop.
Save hendisantika/f817a74fd115416fcaecfae280d7b047 to your computer and use it in GitHub Desktop.
Java Loop II
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 sum=0;
for(int j=1;j<=n;j++)
{
sum+=Math.pow(2,j-1)*b;
System.out.printf("%d ",a+sum);
}
System.out.printf("\n");
}
in.close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment