const U = [];let x = 5;
for (let i = 0; i < 16; i++) {U.push(x * 2 + 3);x += 0.2;}
console.log(U); // Output: [13, 13.4, 13.8, 14.2, 14.6, 15, 15.4, 15.8, 16.2, 16.6, 17, 17.4, 17.8, 18.2, 18.6, 19]
const U = [];
let x = 5;
for (let i = 0; i < 16; i++) {
U.push(x * 2 + 3);
x += 0.2;
}
console.log(U); // Output: [13, 13.4, 13.8, 14.2, 14.6, 15, 15.4, 15.8, 16.2, 16.6, 17, 17.4, 17.8, 18.2, 18.6, 19]