Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

새싹교실/2014/손오반/2014-04-07: Difference between revisions

From ZeroWiki
imported>smksyj
No edit summary
imported>smksyj
No edit summary
Line 3: Line 3:
* 반복문
* 반복문
** while
** while
  while ( ''EXPRESSION'' ) {
  while ( EXPRESSION ) {
     ''statement;''
     statement;
  }
  }
** do-while
** do-while
do {
    statement;
} while ( EXPRESSION )
** for
** for
** continue & break
** continue & break
* 배열
* 배열



Revision as of 02:33, 7 April 2014

진행

  • 조건문 복습
  • 반복문
    • while
while ( EXPRESSION ) {
    statement;
}
    • do-while
do {
    statement;
} while ( EXPRESSION )
    • for
    • continue & break
  • 배열