Created
February 15, 2019 04:13
-
-
Save hendisantika/f817a74fd115416fcaecfae280d7b047 to your computer and use it in GitHub Desktop.
Java Loop II
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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