1 2 3 4 5 6 7 8 9
function f(c) { let m = (212 - 32) / 100; return 32 + m*c; } for (let i = -100; i < 212; i++) if (f(i) == i) console.log(i);