#include <iostream> using namespace std; int main() { int x = 7, y = 3; cout << (y = x / y) << endl; return 0; }
1
2
3
不确定的值