JAva:whileループ文のフォーマット


package dayone1;

public class forwhile {
    public static void main(String[]args){
        int x=1;
        while (x<=10){
            System.out.println(x);
            x++;
        }

    }
}
* A:    while     :
        *
        while       :
        while(      ) {
             ;
        }

            :

             ;
        while(      ) {
             ;
              ;
        }
        * B:    :
        * a:       
        * b:        ,      true  false
        *    true,     
        *    false,     
        * c:       ;
        * d:        
        * e:  B  。