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