Hackerrank – Java Solution – Java Loops II

HackerRank Problem Solution

Problem Name – Java Loops II
Problem Link –  https://www.hackerrank.com/challenges/java-loops
Level – Introduction Challenges

Java Code

import java.util.Scanner;

class Solution{
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int t = scan.nextInt();
for (int i = 0; i < t; i++) {
int a = scan.nextInt();
int b = scan.nextInt();
int n = scan.nextInt();
for (int j = 0; j < n; j++) {
a += b * (int) Math.pow(2, j);
System.out.print(a + " ");
}
System.out.println();
}
scan.close();
}
}

Output:

Hackerrank - Java Solution - Java Loops II

Tags: HackerRank Online Judge Solution, HackerRank OJ Solution list, HackerRank Problems Solution, HackerRank solver, HackerRank all problem solution list, HackerRank solution in java, Hackerrank Java Solution, Hackerrank – Java Solution – Java Loops II

By Maniruzzaman Akash

Maniruzzaman Akash is a freelance web developer with most popular Laravel PHP frameork and Vue JS

Leave a Reply

Your email address will not be published. Required fields are marked *