CS计算机代考程序代写 int quadratic_c(int x, int a, int b, int c) {程序代写 CS代考 int quadratic_c(int x, int a, int b, int c) { return (a*x*x) + (b*x) + c; }