Ask Question
1 December, 02:50

How can I do trace table java for LCM?

+2
Answers (1)
  1. 1 December, 03:03
    0
    import java. util.*;

    import java. io.*;

    class Main {

    public static void main (String[] args) {

    int a, b, lcm1;

    System. out. println ("Enter two integers: ");

    Scanner s12=new Scanner (System. in);

    a = s12. nextInt ();

    b=s12. nextInt ();

    / / maximum number between n1 and n2 is stored in lcm

    lcm1 = (a > b) ? a : b;

    / / Always true

    while (true)

    {

    if (lcm1 % a = = 0 && lcm1 % b= = 0)

    {

    System. out. printf ("The Least common multiple of %d & %d is %d.", a, b, lcm1);

    break;

    }

    ++lcm1;

    }

    }

    }

    Explanation:

    You can find the LCM of two integers using the program in java written above in answer section.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “How can I do trace table java for LCM? ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers