Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

โปรแกรม Java เพื่อแสดงตัวประกอบของตัวเลข


ในบทความนี้ เราจะเข้าใจวิธีการแสดงตัวประกอบของตัวเลข ตัวประกอบคือตัวเลขที่หารตัวเลขหรือนิพจน์อื่นอย่างเท่าเทียมกัน

ตัวประกอบคือตัวเลขที่เราคูณเพื่อให้ได้ตัวเลขอื่น ตัวอย่างเช่น ถ้าเราคูณ 3 กับ 5 เราจะได้ 15 เราบอกว่า 3 กับ 5 เป็นตัวประกอบของ 15 อีกทางหนึ่ง ตัวประกอบของตัวเลขคือตัวเลขที่หารตัวเลขนั้นโดยไม่เหลือเศษใดๆ ตัวอย่างเช่น 1, 2, 3, 4, 6 และ 12 เป็นตัวประกอบของ 12 เนื่องจากทั้งหมดหารกันอย่างเท่าเทียมกัน

ตัวประกอบที่ใหญ่ที่สุดและเล็กที่สุดของจำนวน ตัวประกอบที่ใหญ่ที่สุดของจำนวนใดๆ คือตัวประกอบของตัวเลข และตัวประกอบที่เล็กที่สุดคือ 1

  • 1 คือตัวประกอบของทุกจำนวน
  • ตัวอย่างเช่น ตัวประกอบที่ใหญ่ที่สุดและเล็กที่สุดของ 12 คือ 12 และ 1

ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -

ป้อนข้อมูล

สมมติว่าข้อมูลที่เราป้อนคือ −

Input : 45

ผลผลิต

The factors of 45 are: 1 3 5 9 15 45

อัลกอริทึม

Step 1 - START
Step 2 - Declare two integer values namely my_input and i
Step 3 - Read the required values from the user/ define the values
Step 4 - Using a for loop, iterate from 1 to my_input and check if modulus my_input value and ‘i’ value leaves a reminder. If no reminder is shown, then it’s a factor. Store the value.
Step 5 - Display the result
Step 6 - Stop

ตัวอย่างที่ 1

ที่นี่ ผู้ใช้ป้อนอินพุตตามข้อความแจ้ง คุณสามารถลองใช้ตัวอย่างนี้ในเครื่องมือกราวด์ของเรา โปรแกรม Java เพื่อแสดงตัวประกอบของตัวเลข .

import java.util.Scanner;
public class Factors {
   public static void main(String[] args) {
      int my_input, i;
      System.out.println("Required packages have been imported");
      Scanner my_scanner = new Scanner(System.in);
      System.out.println("A reader object has been defined ");
      System.out.print("Enter the number : ");
      my_input = my_scanner.nextInt();
      System.out.print("The factors of " + my_input + " are: ");
      for (i = 1; i <= my_input; ++i) {
         if (my_input % i == 0) {
            System.out.print(i + " ");
         }
      }
   }
}

ผลลัพธ์

Required packages have been imported
A reader object has been defined
Enter the number : 45
The factors of 45 are: 1 3 5 9 15 45

ตัวอย่างที่ 2

ในที่นี้ มีการกำหนดจำนวนเต็มก่อนหน้านี้ และเข้าถึงและแสดงค่าบนคอนโซล

import java.util.Scanner;
public class Factors {
   public static void main(String[] args) {
      int my_input, i;
      my_input = 45;
      System.out.println("The number is defined as " +my_input);
      System.out.print("The factors of " + my_input + " are: ");
      for (i = 1; i <= my_input; ++i) {
         if (my_input % i == 0) {
            System.out.print(i + " ");
         }
      }
   }
}

ผลลัพธ์

The number is defined as 45
The factors of 45 are: 1 3 5 9 15 45