inblog logo
|
An's Blog
    JAVA

    [JAVA] 13. for문의 기본

    윤설안's avatar
    윤설안
    Feb 09, 2025
    [JAVA] 13. for문의 기본
    Contents
    1. 예제결과
    💡 for문의 기본 문법은 for ( int = (초기식); (조건식); (증강식) { 출력 } 으로 구성 되어있다.
     

    1. 예제

    package ex03; public class ForExample1 { public static void main(String[] args) { for (int i = 0; i < 5; i++) { System.out.println("i의 값은: " + i); } } }

    결과

    notion image
    Share article
    Contents
    1. 예제결과

    An's Blog

    RSS·Powered by Inblog