Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # Calculator
  2.  
  3. Using the HTML, CSS and JS create a single page which will contains a calculator looking similar to the one that you have on your windows. (with some input, buttons, result).
  4.  
  5. ## Requirements:
  6.  
  7. ### .v1
  8.  
  9. - Responsive design
  10. - Can sum two numbers
  11. - Will display result on the top of the page
  12.  
  13. ### .v2
  14.  
  15. - Can perform simple arithmetic operations (sum, sub, multiply, divide)
  16. - Can be used with mouse only - It requires numbers (0-9) created as a button
  17.  
  18. ### .v3
  19.  
  20. - Can see what numbers and operations you are performing (on button click it will display this number/operation on the display)
  21.  
  22. ### .v4
  23.  
  24. - Can cancel last operation
  25. - Can store the numbers in the memory (localstorage) - it prevents from loosing data on page refresh
  26.  
  27. ### .v5
  28.  
  29. - Rewrite it in react.js
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement