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: Create and display unique three-digit number using 1, 2, 3, 4. Also count how many three-digit numbers are there

Java Basic: Exercise-39 with Solution

Write a Java program to create and display unique three-digit number using 1, 2, 3, 4. Also count how many three-digit numbers are there.

Pictorial Presentation:

Java: Create and display unique three-digit number using 1, 2, 3, 4.

Sample Solution:

Java Code:

import java.util.Scanner;

public class Exercise39 {
    
 public static void main(String[] args) {
		int amount = 0;
		for(int i = 1; i <= 4; i++){
			for(int j = 1; j <= 4; j++){
				for(int k = 1; k <= 4; k++){
					if(k != i && k != j && i != j){
						amount++;
						System.out.println(i + "" + j + "" + k);
					}
				}
			}
		}
		System.out.println("Total number of the three-digit-number is " + amount);
	}
}

Sample Output:

123                                                                                                      
124                                                                                                      
132                                                                                                      
134                                                                                                      
142                                                                                                      
143                                                                                                      
213                                                                                                      
214                                                                                                      
231                                                                                                      
234                                                                                                      
241  
------
431                                                                                                      
432                                                                                                      
Total number of the three-digit-number is 24 

Flowchart:

Flowchart: Java exercises: Create and display unique three-digit number

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to count the letters, spaces, numbers and other characters of an input string.
Next: Write a Java program to list the available character sets in charset objects.

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