填空题
执行下列代码
int a=32; double c=32;
cout.setf(ios::hex);
cout<<"hex:a="<< a<< ",c="<< c<< endl; cout.unsetf(ios::hex);
程序的输出结果为()
【参考答案】
hex:a=20,c=32
点击查看答案&解析