代写C++代码 代做C++程序 C++辅导 C++教学

C++网络家教 远程写代码 在线Debug 讲解答疑 不是中介,本人直接写

微信: ittutor QQ: 14061936 Email: ittutor@qq.com

导航

Here is my typed up version of the problem. I have tried to elaborate a bit on the book description of the problem, but if you have any questions just send me an email.


Design a class House that defines a house on a street. A House has an int house number and an Point location. The key member function is draw, which draws the house at location. The draw function should also write the house number on the house using the message object. Next, design a class Street. An object of type Street stores two House objects called first and last and the number of houses, num_houses, on the street which is an int. Street also has a member function called plot. Plot should draw evenly spaced houses starting at first ending with last. The number of houses plotted is equal to number of houses on the street. Use these classes in a graphics program in which the user clicks with the mouse on the locations of the first and last house, then enters the house numbers of the first and last house, and the number of houses on the street. Then the entire street is plotted.


Note: you will have to write constructors as well as number of helper member functions such as get_first() etc. If you think you will need a member function just write one.


Extra credit


Each house has a chimney and produces smoke randomly as in the graphics intro handout. Implemented in an inteligent way. (+1pts)

FAQ


Q: Do we have to account for situation where number of houses entered is greater than the difference between the address of house 1 and house 2. Eg what if house 1 has address 1 and house 2 has address 5 and we have 10 houses on the street. What should happen?


A: Yes. You will have to account for this. Some houses will have the same house number. So if you have 10 houses and first house has number 1 and last house number 5. Then each time address changes by 4/9. This gives the house numbers: 1, 1, 1, 2, 2, 3, 3,4 ,4,5


Q: Do we have to account for a situation where first house has a larger house number than the second house?


A: Yes.


Q: Is it ok if the houses overlap?


A: Yes.


Q: In the street class, is it necessary for the objects to store the the first house and the last house, or can they instead store the x,y coordinates of the first and last houses?


A: Street class has to have two houses.


What to Turn in

Upload to ccle the source file hw6.cpp

Grading

Clases Correctly defined House and Street class 4 points

Constrcutors, member functions Constructors and member functions correctly defined and used. 4 points

Program functions correctly Program functions as described 4 points

Solution Street class uses House class efficiently as described. 4 points

Style Variable names, comments, indentation, no global variables, uses functions wisely 4 points

TOTAL 20 points


相关推荐