填空题 阅读下面的程序:
#include <iomanip.h>
void main()

cout.fill('!');
cout<<setiosflags( ios:: left)<<hex;
cout<<setw(6)<<1024<<endl;

写出该程序的输出结果:______。

  • 1、
【正确答案】 1、400!!!    
【答案解析】