View the following trailers for movies relating to the North American diet:
The Perfect Human Diet
Fat, Sick & Nearly Dead
Food Matters
Killer at Large
Present a brief description of what message one of the trailers is trying to get across and discuss how this diet might influence the interactions of the integumentary, skeletal, and muscular systems that create our basic morphology (shape).
Unit 4 Pseudocode Sample
Description: this logic calculates the total order
Program: totalOrder
Create variable itemsList as array
Create variable totalOrder as double
Create variable listItemPrice as double
itemList = call Function getItemListFromUser
for (each item in itemsList)
listItemPrice = get price for item
totalOrder = totalOrder + listItemPrice
end loop
Display totalOrder