pseudo-code for Samantha and Vikas are looking to buy a house in a new development. After looking at various
models, the three models they like are colonial, split-entry, and single-story. The builder gave
them the base price and the finished area in square feet of the three models. They want to know
the model(s) with the least price per square foot. Write a program that accepts as input the base
price and the finished area in square feet of the three models. The program outputs the model(s)
with the least price per square foot.
1
Expert's answer
2015-09-29T05:20:19-0400
Struct Model { double model_price; double model_area; }
Comments
Leave a comment