执行下面的C++代码,在键盘上先后输入100和200,输出是( )。
1 int first,second; 2 cout << "请输入第1个正整数:"; 3 cin >> first; 4 cout << "请输入第2个正整数:"; 5 cin >> second; 6 cout << (first / second * second) << endl;
200
100
1
0