The statement that completes the code segment is random(1,100)<=60.
From the question, we have the following highlights
- In every 100 customers, 60 purchase full meal
- In every 100 customers, 40 purchase a side dish
<h3>Random generator</h3>
Using a random generator, the following must be true
- The lower bound of the generator must be 1
- The upper bound of the generator must be 100
<h3>The conditional statement</h3>
From the complete program, the else if statement handles the customers that purchase only side dish.
So, the if condition must handle the customers that buy full meals.
Hence, the missing statement in the code is random(1,100)<=60
Read more about code segments at:
brainly.com/question/18497347