https://github.com/sergeiown/beetrooteducationlesson30
Data types
https://github.com/sergeiown/beetrooteducationlesson30
html5 javascript rwd scss
Last synced: 3 months ago
JSON representation
Data types
- Host: GitHub
- URL: https://github.com/sergeiown/beetrooteducationlesson30
- Owner: sergeiown
- Created: 2022-11-30T14:58:47.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-10T09:25:06.000Z (over 2 years ago)
- Last Synced: 2025-02-26T05:42:20.969Z (8 months ago)
- Topics: html5, javascript, rwd, scss
- Language: JavaScript
- Homepage: https://sergeiown.github.io/BeetRootEducationLesson30/
- Size: 79.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BeetRootEducation
**_LMS Beetroot Academy progress_**
### TASKS
**Minimum**
1. Perform the addition of 0.1 and 0.2 to get a mathematically correct answer.
2. Perform the addition of the string "1" and the digit 2 (both operands must be in variables), get a mathematically correct answer.
3. The user specifies the size of the flash drive in GB. The program should calculate how many files of size 820 MB can be placed on the flash drive.**Normal**
1. The user enters the amount of money in the wallet and the price of one chocolate bar. The program prints how many chocolates the user can buy and how much change he will have left.
2. Ask the user for a three-digit number and print it backwards. To solve the problem, you will need the % operator (remainder of division).**Maximum**
1. The user enters the amount of a deposit in the bank for 2 months, with an interest rate of 5% per annum. Print the amount of accrued interest.
2. What will the expressions return:- 2 && 0 && 3
- 2 || 0 || 3
- 2 && 0 || 3
