正在加载图片...
The do statement An example of a do loop int count 0 do count++ System. out. println (count)i while (count 5)i The body of a do loop executes at least once See ReverseNumber java(page 164 31 JAVA31 The do Statement • An example of a do loop: • The body of a do loop executes at least once • See ReverseNumber.java (page 164) int count = 0; do { count++; System.out.println (count); } while (count < 5);
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有