Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Form a staircase shape of n coins where every k-th row must have exactly k coins

Java Basic: Exercise-109 with Solution

Write a Java program to form a staircase shape of n coins where every k-th row must have exactly k coins.

Example 1:
n = 3
The coins can form the following rows:
$
$ $
We will return 2 rows.
Example 2:
n = 4
The coins can form the following rows:
$
$ $
$
We will return 2 rows as the 3rd row is incomplete.
Example 3:
n = 5
The coins can form the following rows:
$
$ $
$ $
We will return 2 rows as the 3rd row is incomplete.

Sample Solution:

Java Code:

import java.util.Scanner;
public class Example109 {
     public static void main(String[] arg) {
	  Scanner in = new Scanner(System.in);	
       System.out.print("Input a positive integer: ");
        int n = in.nextInt(); 
		if (n>0)
		{
           System.out.println("Number of rows: "+((int)((Math.sqrt(8 * (long)n + 1) - 1) / 2)));	
		}       	
	}	
}

Sample Output:

Input a positive integer: 5                                            
Number of rows: 2 

Flowchart:

Flowchart: Java exercises: Form a staircase shape of n coins where every k-th row must have exactly k coins

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to add all the digits of a given positive integer until the result has a single digit.
Next: Write a Java program to check whether an given integer is a power of 4 or not.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe