运行下列程序,输出结果是( )。
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int i =0;
for (i = 1; i < 200; i+=50) {
cout <<setw(3)<<i<<endl;
}
return 0;
0 50 100 150 200
0 50 100 150
1 51 101 151
0 51 101 151