有如下程序代码: #include using namespace std; int main(){ intk=60; while(k>1){ cout<<k; k=k/2; } return 0; } 上述程序的运行次数是:( )
4
0
5
6