Advertisement
nevenailievaa

05. Training Lab

Apr 16th, 2025
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function trainingLab(w, h) {
  2.     let lengthCm = w * 100;
  3.     let widthCm = h * 100;
  4.  
  5.     let rows = Math.floor(lengthCm / 120);
  6.     let cols = Math.floor((widthCm - 100) / 70);
  7.  
  8.     let totalSeats = rows * cols - 3;
  9.     console.log(totalSeats);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement