1 / 15

Brainstorming

Computer Science Project Lost? Coordinator: Kristen Davis Designer: Danielle Jones Programmer: Miguel Rivera. Brainstorming. Work Schedule: This application would help one keep track of his or her work schedule .

lacey
Télécharger la présentation

Brainstorming

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Computer Science ProjectLost?Coordinator: Kristen DavisDesigner: Danielle JonesProgrammer: Miguel Rivera

  2. Brainstorming Work Schedule: This application would help one keep track of his or her work schedule . GPS: This application would help one get directions to where ever he or she needed to go. Step-by-Step: This application would count the steps one took in a day to help one stay in shape.

  3. Description This application gives one directions from the location he or she is at to his or her destination. All that is needed is the name of the destination along with the city and state.

  4. 10 Heuristics 1. Visibility of system status 2. Match between system and the real world 3. User control and freedom 4. Consistency and standards 5. Error prevention 6. Recognition vs. recall 7. Flexibility and efficiency of use 8. Aesthetic and minimalist design 9. Error recovery 10. Help and documentation

  5. Lost? Lost? Lost? Sorry!!! Directions not found. Destination Destination Destination Address/Place Address/Place Address/Place City/State City/State City/State Search/Find Search/Find Search/Find Exit Exit Exit Results: • 1. • 2. • 3. • 4. • 5. Your Directions To: • 1. • 2. • 3. • 4. Select Back Done Back Flow Chart

  6. What to do The first screen allows one type in their destination (address/place, city, state) and from there one can press “Exit” or “Search/Find”. The “Exit” button will exit the application and if the “Search/Find” is chosen a sand timer will pop up to show that it is searching. If the directions are not found then “Sorry Directions Not Found” will pop up and one will be allowed to edit, but if the directions are found then the next screen will give the results of the address/place and a list of its location(s) in the city and state named. One can scroll down and choose a location; once a location is chosen then one can chose “select” or “back”. The “back” button will take one back to the destination screen, and the “select” button will take one to the next screen. The next step is the directions, it will tell one how to get to where they are going. On this screen one can chose “done” or “back”; the “back” button takes one to the previous screen, and the “done” button ends the application.

  7. Java Coding Compiling Compiling is the process of making sure that all your java programs are written according to the correct Java syntax. In order to compile programs, you must follow the following instructions.

  8. Java Coding Step 1: Locate the terminal window. If this is not on your tool bar (a black terminal icon), you can find them under Mac HD ‡ Applications (or it may be in the Utilities folder).  Once you find the program, drag the icon to your toolbar so it will always available to you. Next time you login, you should see this icon. Click and open the terminal window.

  9. Java Coding Step 2: Type the following. The notes after the symbol % are comments. Do not type them. Note that I am using “My Demo Program” for folder name. But this will depend on what file you downloaded. Use that name instead.

  10. Java Coding cd  desktop                       % this will change your working directory to desktopls                                            %  this will display all the files and folders under your desktop.                                                         You should see “My Demo Program”  (or whatever the                                                          name might be) folder there.  cd  “My Demo Program” % this will change the directory to your program folderjavac  FILENAME.java   % where FILENAME is the name of the file in the directory ending in .java                                                       %    This compiles all Java files in your folder

  11. Java Coding Modifying the Program If you have to change any programs, just click on the file to open it, make the changes and save. Then you must recompile to make sure the program is syntactically correct.

  12. Java Coding Running the Program Running is the process of executing the program to get the output. Even if there are no syntax errors, it may not produce the correct output. In that case, modify the files, save and recompile before doing this. To run a program, do the following.java  FILENAMEFILENAME.java in your folder and the main is part of that class called FILENAME.

More Related