若下面程序运行时输出结果为 1,A,10.1 2,B,3.5 include <iostream> using namespace std; int main() { void test(int, char, doubie【 】); test(1, 'A', 10.1 ); test(2, 'B'); return 0; } void test(int a, char b, double c) { cout<<a<<','<<b<<','<<c<<endl; }
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【单选题】听力原文:W: Is this a good reference book? M: It's good. But I wouldn't buy it because it's too expensive. Q: What does the man think about the reference book? (4)
【简答题】程序填空题 给定程序中函数 fun 的功能是:从低位开始取出整型变量 s 中奇数位上的数,依次构成一个新数放在 t 中。高位仍在高位,低位仍在低位。 例如,当 s 中的数为: 7654321 时, t 中的数为: 7531 。 请填写程序中的空白处,使它能得出正确的结果。 注意:不要改动 main 函数,不得增行或删行,也不得更改程序的结构。 #include /************found...