若下面程序运行时输出结果为: 1,A,10.1 2,B,3.5 请将程序补充完整。 #include<iostream> using namespace std; int main() { void test

admin2012-01-20  30

问题 若下面程序运行时输出结果为:
   1,A,10.1
   2,B,3.5
   请将程序补充完整。
   #include<iostream>
   using namespace std;
   int main()
   {
   void test(int, char,double______);
   test(1, ’A’, 10.1);
   test(2, ’B’);
   return 0;
   }
   void test(int a, char b, double c)
   {
   cout<<a<<’,’<<b<<’,’<<c<<end1;
   }

选项

答案=3.5

解析
转载请注明原文地址:https://jikaoti.com/ti/OnL0FFFM
0

最新回复(0)