单项选择题

有如下程序: #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