Advertisement
7f

test

7f
Oct 18th, 2023
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. Jim has just opened a computer store in town and sells a small range of computers. They are…
  2.  Home Basic $900
  3.  Office $1200
  4.  Gamer $1500
  5.  Studio $2200
  6. Basic specifications are
  7.  Home Basic 4GB RAM Built in Graphics 20” Monitor
  8.  Office 8GB RAM Built in Graphics 23” Monitor
  9.  Gamer 16GB RAM 4GB Nvidia Graphics 27” Monitor
  10.  Studio 16GB RAM 4GB Quadro Graphics Dual 23” Monitors
  11. The prices and specifications MUST be stored in separate lists, but the details output together
  12. You program needs to ask for the following
  13.  Their name
  14.  Their age
  15.  How much the computer they want costs (no need to state the model)
  16.  How much money they have
  17. A nice banner needs to print off at the start and end of the transaction
  18. If the person has enough money to make the purchase they should be told that they have enough money and to come in store
  19. If the person does not have enough money, but they are 18 or older it should offer them finance and say to come in store
  20. If the person does not have enough money, and they are under 18 it should tell them to keep saving then come in store
  21. The customer’s name needs to be printed off with all transactions
  22. You do NOT need to do any calculation based on the price of the computer from the list. Only from the input statements
  23. Requirement 1
  24.  Your program must work without errors
  25. Requirement 2
  26.  The program must be laid out in a sensible manner
  27. Requirement 3
  28.  There must be comments in the code the document what it does
  29. Requirement 4
  30.  There must be written evidence that you have tested the program works with a basic range of ages and cash amounts
  31. Requirement 5
  32.  Data must be stored in at least 2 types of data - such as text and number
  33. Requirement 6
  34.  There must be sequence, selection and iteration in your program
  35. Requirement 7
  36.  You must create and use two lists
  37. Requirement 8
  38.  You need to use a procedure
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement