473,403 Members | 2,284 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,403 software developers and data experts.

Help

1
okay so i have a CIS class called abstraction and design. i'm completely new to this "java" stuff. I've never seen any of it in my life. our second homework is to create a program that produces a "ASCII art" version of the lincoln financial field where the eagles play.

anyone who can help????
These are all the guidelines and what not...


Assignment Description
Your second assignment will provide you with practice using static methods, variables, and “for” loops. Part of the purpose of the assignment is to give everyone practice in decomposing problems that involve repetition. At the same time, this assignment tests your ability to find patterns for nested loop structures.

Program Description
You will write a Java class called TheLinc that must be saved into a file called TheLinc.java. Your program should produce the text output on the next page, which is meant to be an “ASCII Art” version of Lincoln Financial Field (and the parking lots), where the Eagles play.You should exactly reproduce the format of this output. This includes having identical spacing and punctuation. You may include blank lines at the end of the output, if you like.

Stylistic Guidelines
One way to write this program would be to simply write a println statement that outputs each line of the drawing in order. However, such a solution would receive only partial credit. Part of the challenge of this assignment lies in recognizing the structure and redundancy of the figure, and developing a solution that matches the structure and minimizes the redundancy. Any println or print statement in your program should not be in your main method. Use
static methods in this program, for two reasons:
1. To capture the structure of the drawing. You should at the very least have two static methods, one for drawing the parking lots, and one for drawing the stadium.
2. To avoid redundancy. Several parts of the drawing, including almost every line of the parking lot and every line of the field (the “stars”), are repeated exactly. You should write a separate method that prints out each of these repeated elements once, and use that method repeatedly.
It would be possible to manually determine the number of lines that are to be printed out, and then have separate print and println statement for each one. Such a solution will also not receive full credit. Instead, you should use “for” loops to print the correct number of lines in the parking lot and stadium. Furthermore, you should use for loops to print the correct number of characters on each line. No print or println statement in your program should print more
than 2 characters at a time. It is also possible to use magic numbers to determine how many times a loop should repeat.Such a solution will not receive full credit. Instead, you should use a class constant, called LINC SIZE, that determines the length of the drawing. The only magic numbers in your code
should be “0”, “1”, and “2”. You may define more class constants if you wish.
The LINC SIZE for the drawing above is 4. A complete solution to the problem will be able to produce a proportionally larger drawing, simply by changing the value of the LINC SIZE, recompiling, and rerunning. It should work for any LINC SIZE greater than 2. The sizes for the various structures should be determined as follows:
1. Each of the two parking lots should have the same width (number of underscores) as the LINC SIZE.
2. The dividing line between the two parking lots should be centered above the stadium.
3. In order to provide enough parking for everyone, the length (number of lines) of the parking lots should be proportional to the square of the LINC SIZE. So, for a LINC SIZE of 4, there should be 16 lines inside the parking lots.
4. The field (the star characters) should be twice as wide as the LINC SIZE, and it should have twice as many lines as LINC SIZE.
5. At the narrowest point, there should be exactly one space separating the edge of the seats(the area filled with periods) from the outer wall of the stadium on the top and bottom. Onthe left and right, the edge of the seats should connect with the exterior wall, as pictured.
6. There should be LINC SIZE rows containing periods above the field, and LINC SIZE-1 rows containing periods below it. Include a comment at the beginning of your program with some basic information and a description of the program.

I have several recommendations for getting started with this assignment:

1. Write an initial version with good structure, but use magic numbers wherever you want. Make sure this version works before trying to get rid of the magic numbers and replacing them with constants.
2. To structure your program, I recommend separating the drawing for the stadium into at least four distinct parts: one for the top section above the field, one for the lines containing the field above midfield, one for the lines containing the field below midfield, and one for the bottom section of the stadium below the field.
3. After your initial version is working, replace only some of the magic numbers with expressions involving LINC SIZE, and try a different constant size. Test those parts, fix them, and then move on to replacing more of the magic numbers.

_________________
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
__________________________________
| __ |
| _/..\_ |
| _/......\_ |
| _/..........\_ |
| _/..............\_ |
| _/.....********.....\_ |
| _/.......********.......\_ |
| _/.........********.........\_ |
|_/...........********...........\_|
| \_..........********.........._/ |
| \_........********........_/ |
| \_......********......_/ |
| \_....********...._/ |
| \_............_/ |
| \_........_/ |
| \_...._/ |
| \__/ |
|__________________________________|

The field is coming up wrong but the "parking lot" part is okay (the first part)
thank you
Sep 12 '07 #1
1 1212
Nepomuk
3,112 Expert 2GB
okay so i have a CIS class called abstraction and design. i'm completely new to this "java" stuff. I've never seen any of it in my life. our second homework is to create a program that produces a "ASCII art" version of the lincoln financial field where the eagles play.

anyone who can help????
These are all the guidelines and what not...
...
_________________
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
|________|________|
__________________________________
| __ |
| _/..\_ |
| _/......\_ |
| _/..........\_ |
| _/..............\_ |
| _/.....********.....\_ |
| _/.......********.......\_ |
| _/.........********.........\_ |
|_/...........********...........\_|
| \_..........********.........._/ |
| \_........********........_/ |
| \_......********......_/ |
| \_....********...._/ |
| \_............_/ |
| \_........_/ |
| \_...._/ |
| \__/ |
|__________________________________|

The field is coming up wrong but the "parking lot" part is okay (the first part)
thank you
Hi tkempy! Welcome to TSDN!
As you have seemingly started writing the code, please post the part of the code, which is responsible for the field, which is comming up wrong, so that we can help you.

One tip: When posting ASCII Art here, use the code tags - otherwise several spaces will be reduced to one.
I guess, the second picture is supposed to look a bit like this:
Expand|Select|Wrap|Line Numbers
  1. ___________________________________
  2. |                __                |
  3. |              _/..\_              |
  4. |            _/......\_            |
  5. |          _/..........\_          |
  6. |        _/..............\_        |
  7. |      _/.....********.....\_      |
  8. |    _/.......********.......\_    |
  9. |  _/.........********.........\_  |
  10. |_/...........********...........\_|
  11. | \_..........********.........._/ |
  12. |   \_........********........_/   |
  13. |     \_......********......_/     |
  14. |       \_....********...._/       |
  15. |         \_............_/         |
  16. |           \_........_/           |
  17. |             \_...._/             |
  18. |               \__/               |
  19. |__________________________________|
  20.  
And another tip: Before you post your code, please read the Posting Guidelines (if you haven't done so allready), as keeping to them really helps you and us.

Greetings,
Nepomuk
Sep 12 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

21
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help...
9
by: Tom | last post by:
A question for gui application programmers. . . I 've got some GUI programs, written in Python/wxPython, and I've got a help button and a help menu item. Also, I've got a compiled file made with...
6
by: wukexin | last post by:
Help me, good men. I find mang books that introduce bit "mang header files",they talk too bit,in fact it is my too fool, I don't learn it, I have do a test program, but I have no correct doing...
3
by: Colin J. Williams | last post by:
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With...
7
by: Corepaul | last post by:
Missing Help Files When I enter "recordset" as the keyword and search the Visual Basic Help index, I get many topics of interest in the resulting list. But there isn't any information available...
5
by: Steve | last post by:
I have written a help file (chm) for a DLL and referenced it using Help.ShowHelp My expectation is that a developer using my DLL would be able to access this help file during his development time...
8
by: Mark | last post by:
I have loaded Visual Studio .net on my home computer and my laptop, but my home computer has an abbreviated help screen not 2% of the help on my laptop. All the settings look the same on both...
10
by: JonathanOrlev | last post by:
Hello everybody, I wrote this comment in another message of mine, but decided to post it again as a standalone message. I think that Microsoft's Office 2003 help system is horrible, probably...
1
by: trunxnirvana007 | last post by:
'UPGRADE_WARNING: Array has a new behavior. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="9B7D5ADD-D8FE-4819-A36C-6DEDAF088CC7"' 'UPGRADE_WARNING: Couldn't resolve...
0
by: hitencontractor | last post by:
I am working on .NET Version 2003 making an SDI application that calls MS Excel 2003. I added a menu item called "MyApp Help" in the end of the menu bar to show Help-> About. The application...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.