#831. 循环次数

循环次数

以下程序段的循环语句执行({{ input(1) }} )次

int k=5;
do{
    k--;
}while(k<=0);