Suggestion C++ - Building

Hello all. Anyone mind give a suggestion what kind of program that related to building? It sound like the question is not specific.. But i have choose this topic that is building. The program that i want to code is the general one, not the high level program. If the topic that i choose is "drink", then my mind will come out with drink ordering program.. and how about topic with "building"?
Any suggestion?
A somewhat tricky suggestion: You could make a program in which you put in a house like this:

How many bedrooms?
How many bathrooms?
How many floors?

You can obviously put sensible limits on these values...

Then, your program could generate a house with appropriate number of bedrooms, bathrooms and floors and a kitchen and lounge. The house could be output like this:

1
2
3
4
5
6
7
8
//Floor plan with 1 floor
/*---------------------------------------
-  b e d r o o m  |   b a t h r o o m  |
-                 |                    |
--dd------------------------dd-----------
-  l o u n g e |  k i t c h e n        |
-              dd                      |
--dd------------------------------------*/
does the bedroom, bathroom and floor number are entered by user and it will generate a plan that u showed? or it has been set in the program? how does the output works actually?
That's all determined by the program you wirite.
I was thinking about the numbers being entered by the user and then generating the plan. The output is just from cout >> to console or file, in plain text.
Last edited on
Topic archived. No new replies allowed.