用C语言或C++编写这个程序。谢谢。 日期:2016-11-03 15:23:37 人气:1 用C语言或C++编写这个程序。谢谢。 #include double f(double x) { return 3 * x - 1;} int main() { printf("f[f(2)] = %.0lf\n",f(f(2))); return 0;}