通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下列程序的输出结果是()。
#include<iostream.h> void ff(int x); void ff(double x); void main() { float a=88.18; ff(a); char b='a'; ff(b); } void ff(int x) { cout<<"ff(int):"<<x<<endl; } void ff(double x) { cout<<"ff(double):"<<x<<endl; }