전체구조
do-while 루프는 조건을 확인하기 전에 명령문을 한 번 이상 실행합니다.
일반적인 형식은 다음과 같습니다.
do { instruções; } while(condição);
for 루프와 while 루프의 차이점
간단한 예
사용자가 문자 'q'를 입력할 때까지 반복하는 프로그램:
// Demonstra o laço do-while. class DWDemo { public static void main(String args[]) throws java.io.IOException { char ch; do { System.out.print("Press a key followed by ENTER: "); ch = (char) System.in.read(); // obtém um char } while(ch != 'q'); } }
향상된 추측 게임
사용자가 올바른 문자를 추측할 때까지 반복되는 추측 프로그램:
Guess4.java 참조
점술 프로그램 설명
실행예
추측 프로그램의 일반적인 실행
I'm thinking of a letter between A and Z. Can you guess it: A ...Sorry, you're too low Try again! I'm thinking of a letter between A and Z. Can you guess it: Z ...Sorry, you're too high Try again! I'm thinking of a letter between A and Z. Can you guess it: K ** Right **
중요사항
결론
위 내용은 Java의 do-while 루프의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!