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