以下能够实现输出整数2的是?( )
double a=5.5, b=2.6;
cout<< a/b << endl;
cout<< b << endl;
cout<< (int)(a/b) << endl;
cout<< (int)a/b << endl;