which is of higher importance? while statement in do statement of an internal break

后端 未结 0 1663
北海茫月
北海茫月 2020-11-30 23:52
count=1;
do {
    System.out.println("Count value was "+count);
    count++;
    if (count>100){
        break;
    }
}while (count!=200);
相关标签:
回答
  • 消灭零回复
提交回复
热议问题