zoukankan      html  css  js  c++  java
  • 第五章 循环结构

              第五章  循环结构

    英语新识:

    while  循环    do  执行    index  牵引    bug  错误    debug  调试

    equal  相等    step  步骤    error  错误

    结构框图:

    语法新知:

    一:

    while:

    int num=0;

    while(  i<4){

    System.out.println(" ");

    i++;

    }

    二:

    do-while:

    do{

    System.out.println (" ");

    }while(!"y".equals(answer));

    注:

    1.确实的赋值

    2.{ }的范围确定
    3." i"值的改变 //先执行,后判断.

  • 相关阅读:
    spoj705
    bzoj2440
    spoj220
    bzoj2301
    hdu1695
    poj3294
    hdu3518
    poj3693
    函数
    样式
  • 原文地址:https://www.cnblogs.com/merrycell/p/6685368.html
Copyright © 2011-2022 走看看