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: Convert 3 digits positive number in given format

Java Basic: Exercise-246 with Solution

Let us use the letter H to mean "hundred", the letter T to mean "ten" and “1, 2, . . . n” to represent the ones digit n (<10).
Write a Java program to convert 3 digits positive number in above format. For example, 234 should be output as BBSSS1234 because it has 2 "hundreds", 3 "ten", and 4 of the ones.

Input:
235
230
Output:
HHTTT12345
HHTTT

Sample Solution:

Java Code:

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
		System.out.println("Input a positive number(max three digits):");
        char[] num = String.format("%03d", in.nextInt()).toCharArray();
        StringBuilder tm = new StringBuilder();
        for (int i = 0; i < num[0] - '0'; i++) {
            tm.append("H");
        }
        for (int i = 0; i < num[1] - '0'; i++) {
            tm.append("T");
        }
        for (int i = 0; i < num[2] - '0'; i++) {
            tm.append(i + 1);
        }
		System.out.println("Result:");		
        System.out.println(tm.toString());
    }
}

Sample Output:

Input a positive number(max three digits):
235
Result:
HHTTT12345

Pictorial Presentation:

Java Basic Exercises: Convert 3 digits positive number in given format.

Flowchart:

Flowchart: Convert 3 digits positive number in above format.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program which accepts students name, id, and marks and display the highest score and the lowest score.
Next: Write a Java program which accepts three integers and check whether sum of the first two given integers is greater than third one. Three integers are in the interval [-231, 231 ].

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