下列程序的输出结果是。#include<iostr

下列程序的输出结果是()。

#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; }
答案
A

题目信息

题号:5966
题型:单选题
难度:普通