79363770

Date: 2025-01-17 06:06:11
Score: 1
Natty:
Report link

console.log("Графики функсияи y = x * (x - 5)");
console.log("Қиматҳои x ва y:");
console.log("x        y");
console.log("----------------");

for (let x = -3; x <= 3; x += 0.1) {
    let y = x * (x - 5);
    console.log(x.toFixed(2) + "    " + y.toFixed(2));
}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ҳусейн Талбаков