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 16: Line 16:
** continue & break
** continue & break
* 배열
* 배열
== 실습 ==
* 별찍기
* 구구단



Revision as of 02:35, 7 April 2014

진행

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

실습

  • 별찍기
  • 구구단