赞题库-背景图
单项选择题

有如下程序:
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
cout.fill("*");
cout<<left<<setw(4)<<123<<"OK"<<endl;
return 0;
}
执行这个程序的输出结果是______。

A.123*OK
B.123*OK**
C.*123OK
D.*123**OK