填空题 以下程序的执行结果是{{U}} 【13】 {{/U}}。 #include<iostream.h> void main() { cout.fill('*'); cout.width(10); cout<<123.45<<endl; cout.width(8); cout<<123.45<<endl; cout.width(4); cout<<123.45<<endl; }
  • 1、
【正确答案】 1、****123.45    
【答案解析】**123.45 123.45