Computer Science, asked by tathagatanaskar5, 5 months ago

write a program in java to accept a number and find all the even factors of the number​

Answers

Answered by llMundaAujlaFanAall
1

Explanation:

ਓ ਪਹਿਲੇ week ਹੋਗੀ ਗੁੱਸੇ ਦੂਜੇ week ਬੁੱਲ ਰੁੱਸੇ

ਓ ਪਹਿਲੇ week ਹੋਗੀ ਗੁੱਸੇ ਦੂਜੇ week ਬੁੱਲ ਰੁੱਸੇ

ਤੀਜੇ week ਨਜ਼ਰਾਂ ਚੋ ਫਰਕ ਪੀਯਾ

ਜੀਂਦੇ ਜਾਗਦੇ ਦੀ ਜੂਨ ਅਣਖਾਂ ਨੇ ਵਿਗਾੜੀ ਪਈ ਆ

ਮਾਰਿਆਂ ਦਾ ਦੇਖਣੇ ਨੂੰ ਨਰਕ ਪੀਯਾ

ਬੈਠ ਕੇ ਪਿਆਕੇ ਚਾਹਵਾਨ ਫੇਰ ਤੋਰਿਆ ਤੂੰ ਕੁੜੇ

ਅੱਸੀ ਤੇਰੇ ਦਿਲ ਵਿਚੋਂ ਖੇਡ ਹੀ ਗਏ

ਥੋੜੇ-ਥੋੜੇ hint ਤਾ ਦਿੱਤੇ ਸੀ ਅਣਖਾਂ ਨੇ

ਸਾਥੋਂ ਹੋਗੀ ਗ਼ਲਤੀ ਨੀ ਪੜ੍ਹੇ ਨੀ ਗਏ

ਛੱਡਣ ਦੇ hint ਤਾ ਦਿੱਤੇ ਸੀ ਅਣਖਾਂ ਨੇ

ਸਾਥੋਂ ਹੋਗੀ ਗ਼ਲਤੀ ਨੀ ਪੜ੍ਹੇ ਨੀ ਗਏ

ਹੋ change ਹੋਗੇ ਕੱਪੜੇ ਸੀ

Change ਹੋਇਆ ਗੱਲਾਂ ਕੁੜੇ

ਹੌਲੀ-ਹੌਲੀ change ਹੋਗੀ ਵਾਸ਼ਨਾ ਤੇਰੀ

ਸਾਰਿਆਂ ਦੇ ਹੱਥਾਂ ਵਿਚ

ਘੁੱਮੀ ਜਾਵੇ ਬੇਗੀਏ ਨੀ

Answered by Shivu516
1

Hope it helps ^_^

This is the base program for finding the factors

I have also added all the possible outputs

import java.util.Scanner;

public class FactorTeller{

   public static void main(String [] args){

       Scanner sc = new Scanner(System.in);

       int i, num;

       System.out.print("Enter a number in order to know its factors: ");

       num = sc.nextInt();

       System.out.println("The factors of the given number are as follows: ");

       for (i = 1; i <= num; i++){

           if(num % i == 0){

               System.out.println(i);  

           }

       }

   }

}

Outputs:

Enter a number in order to know its factors: 20

The factors of the given number are as follows:  

1

2

4

5

10

20

Similar questions