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:

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 :
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.
Java Code Editor:
Contribute your code and comments through Disqus.
Previous Java Exercise: Extract the first digit from an integer.
Next Java Exercise: Check whether every digit of a given integer is even.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics