w3resource

Java: Display the factors of 3 in a given integer


Display Factors of 3 in Integer

Write a Java method to display the factors of 3 in a given integer.

Pictorial Presentation:

Java Method Exercises: Display the factors of 3 in a given integer

Sample data:
(8) -> 8 = 8
(45) -> 45 = 3 * 3 * 5
(81) -> 81 = 3 * 3 * 3 * 3 * 1

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.print("Input an integer(positive/negative):");
        int n = in.nextInt();
        System.out.print("\nFactors of 3 of the said integer:\n");
        test(n);
        }

public static void test(int n){
    System.out.print(n + " = ");
    int result = n;
    while (result % 3 == 0){
        System.out.print("3 * ");
        result = result / 3;
    }
    System.out.print(result);
}
}

Sample Output:

Input an integer(positive/negative): 81

Factors of 3 of the said integer:
81 = 3 * 3 * 3 * 3 * 1

Flowchart :

Flowchart: Display the factors of 3 in a given integer


For more Practice: Solve these Related Problems:

  • Write a Java program to display the prime factorization of an integer with emphasis on the factors of 3.
  • Write a Java program to check if an integer is a power of 3 and display the breakdown of factors.
  • Write a Java program to display how many times 3 appears as a factor in the prime factorization of an integer.
  • Write a Java program to decompose an integer into factors, highlighting the contribution of factor 3 separately.

Go to:


PREV : Extract First Digit of Integer.
NEXT : Check If All Digits in Integer Are Even.


Java Code Editor:

Contribute your code and comments through Disqus.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.