下列代码的输出结果是( )。
1 #include <iostream> 2 using namespace std; 3 4 int main() { 5 int a = 12; 6 int result = a >> 2; 7 cout << result << endl; 8 return 0; 9 }
12
6
3
1