write the steps to find the LCM of three numbers​

Answers

Answer 1

Answer:

First factor of three number ,then take common numbers between three factor ,then common ×remaining number ,hope you will find your answer


Related Questions

Please read this lab exercise thoroughly, before attempting to write the program.

Write a program that reads the pairs of group number and student count from the text file (user must enter name of file) and:

Displays the number of groups in the file (5 %)
Displays the number of even and odd student count (5%)
Displays the sum of the even student count and the sum of the odd student count as well as the sum of all the student count (5%)
Displays the group numbers of the largest student count and the smallest student count (5 %)
Computes the average of the largest and smallest student count (10 %)
Compute the sum of ALL the digits in the largest student count (i.e. 952 – Sum is 9+5+2 = 16) (15 %)
Assume the contents of the file are as follows but that the pairs of data can change later:

1 25

2 123

3 475

4 61

5 77

6 910

7 234

8 138

9 134

10 95

11 674

12 345

13 31

14 211

15 952

16 873

17 22

18 7

19 876

20 347

21 450

The following is a sample output: User input in red

What is name of the input file? integers.dat

The number of groups in the file is 21

There are 12 odd student count and 9 even student count

The sum of the odd student count is 2645

The sum of the even student count is 4390

The sum of all the student count is 7035

The group number of the largest student count is 15

The group number of the smallest student count is 18

The average of 952 and 7 is 479.5

The sum of all the digits in the largest student count is 16

NOTE:

Use two decimal point precision for the average
To check your code, adjust one of the student count in the file, recompile your code and run again (suggest changing the largest or smallest student count )
Even though there are 21 pairs of numbers in the file, the program should NOT presume there will always be 21 pairs of numbers. In other words, you should not solve this problem by declaring 21 pairs of values. If I choose to use another integers.dat file other than the one provided with the assignment, your program should still work correctly with that file as well. All you can assume is that a series of integers will be read in from the file. Therefore, you need to implement a solution that uses the repetition control structures (for, while, do…while) in the reading and processing of these values to produce your output.

Answers

Answer:

filename = input("Enter input file? ")

with open(filename, 'r') as data:

num_groups = []

num_counts = []

for line in data:

 cols = line.split()

 num_groups.append(int(cols[0]))

 num_counts.append(int(cols[1]))

print("The number of num_groups in the file is "+str(len(num_groups)))

c_even = 0; c_odd = 0; s_odd = 0; s_even = 0

for i in num_counts:

if i%2 == 0:

 c_even=c_even+1

 s_even = s_even + i

else:

 c_odd=c_odd+1

 s_odd = s_odd + i

print("There are "+str(c_odd)+" odd student and "+str(c_even)+" even student")

print("The sum of odd student is "+str(s_odd))

print("The sum of even student is "+str(s_even))

print("The sum of all student is "+str(s_even+s_odd))

max_count = num_groups[num_counts.index(max(num_counts))]

print("The group number of the largest student is "+str(max_count))

min_count = num_groups[num_counts.index(min(num_counts))]

print("The group number of the smallest student is "+str(min_count))

print("The average of "+str(max(num_counts))+" and "+str(min(num_counts))+" is:",end=" ")

print("%.2f" % ((max(num_counts)+min(num_counts))*0.5))  

bigkount = str(max(num_counts))

bigsum = 0

for i in range(len(bigkount)):

bigsum += int(bigkount[i])

 

print("The sum of all the digits in the largest student is: "+str(bigsum))

Explanation:

The program was written in Python.

Because of the length, I added an attachment where I used comments to explain the lines of the code

Write a program that reads a list of integers, and outputs the two smallest integers in the list, in ascending order. The input begins with an integer indicating the number of integers that follow. You can assume that the list will have at least 2 integers and fewer than 20 integers. Ex: If the input is: 5 10 5 3 21 2

Answers

Answer:

Follows are the code to the given question:

#include <iostream>//header file  

using namespace std;

int main() //main method

{

int nums[20];//defining an array

int n,i,k;//defining integer variables

cout<<"Enter total number you want to insert: ";//print message

cin>>n;//input value of n  

cout << "Enter array numbers: " << endl;//print message

for (i = 0;i<n;i++) //defining for loop for input values from user-end

{

   cin >> nums[i];//input values

}

for (i = 0; i < n;i++) //defining for loop for count array values

{

   for (k =i+1;k<n;k++)//defining for loop for arrange value in ascending  order  

   {

       if (nums[i] > nums[k])//checking first and second value

       {

           int t = nums[i];//defining integer variable that hold first element value in t

           nums[i] = nums[k];//holding second element value in first element

           nums[k] = t;//assign value in t

       }

   }

}

cout<<"Two smallest number in list are:";//print message

 for (i = 0; i <2; ++i)//defining for loop that prints first two smallest value  

     cout<<nums[i]<<" ";//print value

   return 0;

}

Output:

Enter total number you want to insert: 6

Enter array numbers:  

5

10

5

3

21

2

Two smallest number in list are:2 3  

Explanation:

In this code, an integer array "nums" is defined, and in the next step multiple integer variable is defined, that uses the for loop input value from the user-end, and in the next step, another two for loop is declared, that uses if block to arrange value into the ascending order at which it stores two smallest value in first and second position in the array element, and in the next step, it uses another for loop to print its element value.

design an algorithm to generate the first n terms of sequence 2,6,10,14​

Answers

Answer:

#Begin

a=2

k=0

temp=0

#Input

k=input()

temp=k

k=0

#Processing

while int(k)<int(temp):

print(a)

a=a+4

k=k+1

In this exercise, using the knowledge of computational language in python, we have that this code will be written as:

The code is in the attached image.

What is range?

The Python range function is a function native to the Python language that is used to generate a numerical sequence within a given range. It is normally used as an auxiliary to the for function. In Python, we can repeat an action a specified number of times using a for loop with the range function.

We can write the python  as:

a=2

k=0

temp=0

k=input()

temp=k

k=0

while int(k)<int(temp):

print(a)

a=a+4

k=k+1

See more about python at brainly.com/question/13437928

Other Questions
The ratio of math teachers to choir teachers is 3:2 respectively. There are 12 math teachers. How many math and choir teachers are there all together? Determine if the sequence below is arithmetic or geometric and determine thecommon difference / ratio in simplest form.20, 10, 5, ... 2"Every tourist istourist." comment.traveller but everytraveller is not Explain why is ortho nitrophenol more acidic than ortho methoxyphenol Several friends had gathered at Jims house during the day off from school lastweek. It was 12:30 and Dan suggested, Lets order some pizza for lunch!Dont you want my mom to make something for us? asked Jim. Oh no, said,Dan Why give your mom extra workand besides according to my Foods teacher, pizza isa meal in a slice!Annie said, Im not hungryI ate before I came. Dan said, Annie, you never eat.Yes I do, said Annie, I have to watch what I eat or Ill get fat. I cant eat more than 500calories a day so I write down everything I eat to be sure that I dont eat more than Ishould. And I take a vitamin pill every day because I learned that vitamin means VITALFOR LIFE.Bea was all for ordering the pizza. Dan asked Bea how she was able to stay so thinand yet she ate as much as the fellows. Oh, said Bea, I just take a few Ex-Lax or forcemyself to vomit if I eat too much. I love to eat, but like Annie, dont want to be fat.Mark said that he wanted a couple of Twinkies and potato chips in addition to thepizza. Make sure you order several..you know I can eat at least six slices by myself!Well Joanie, are you in favor of the pizza? asked Dan? Oh sure, Joanieanswered. You know how I enjoy foodIll just do some extra running and exercisingtonight.1. Which of the girls had poor or unusual eating habits?2. Explain why you think they were poor or unusual.3. Which of the boys had poor or unusual eating habits?4. Explain why you think they were poor or unusual.:D What is the SI unit of time?A.secondB.minuteC.hourD. day solve equation by completing the square 5n^2-3n-10=15 If a person's goal is to increase his or her goal fitness, which is the most important factor: the specific aerobic exercise a person does or the intensity of the exercise? Defend your respond. Find the value of each variable,y =Z= Barred owls often lay two eggs, and each resulting chick has an equal probability of being male or female. What is the probability that both chicks are male, given that at least one of them is male? Divide.(8x^3+ 31x^2+ 6x +40) + (2x+8) 7) Are the expressions equivalent? **8k + 5k = 13k What are the main factors that affect an ocean current?geographical featuresWind caused by unequal heating of the earthnone of the choicesCoriolis effect Your grandfather has offered you a choice of one of the three following alternatives: $14,000 now; $7,250 a year for ten years; or $96,000 at the end of ten years. Use Appendix B and Appendix D for an approximate answer, but calculate your final answer using the formula and financial calculator methods. a-1. Assuming you could earn 6 percent annually, compute the present value of each alternative: PLEASE HELP ASAP I GIVE BRAINLIST AND THANKS !!! The XYZ affair was a major issue in the 1790s. A slogan in the United States during this time was "Millions for defense, not one cent for tribute!" this slogan meant ?A ) Americans would pay millions for defense but nothing for bribes.B ) Americans wanted millions to join the army as volunteers.C ) Americans would give the French millions of dollars for defense.D ) Americans wanted French to pay millions for U.S. defense and not one cent less. Why did Europeans benefit the most from the trade? Why did the trade not happen in Europe? What obstacles made trade difficult or dangerous in Europe ? This is midpoints geometry I need help soon. Mr. Green cuts his lawn every 8 days, while Mrs. Grasse cuts her lawn every 10 days. Suppose they both cut their lawns today. What is the least number of days that will pass before both Mr. Green and Mrs. Grasse cut their lawns on the same day again? * What is the answer to this and how do I do it??? measure that should be put in place to ensure peaceful election in ghana