单选题 难度 2
整数、字符、小数混着读。
下面代码,若输入「12 x 3.5」,输出是( )。 int a; char c; double d; cin >> a >> c >> d; cout << a << " " << c << " " << d << endl;