문제1. 0부터 20까지 출력해보자.

1
2
3
4
5
6
7
8
9
10
11
package forex;
 
public class ForTest03 {
    public static void main(String[] args) {
 
        for(int i=0; i<21; i++) {
            System.out.print(i + " ");
        }
        
    }
}
cs



문제2. 0부터 90까지 10단위로 출력해보자.

    ex. 0, 10, 20, 30, .. , 80, 90

1
2
3
4
5
6
7
8
9
10
11
package forex;
 
public class ForTest04 {
    public static void main(String[] args) {
 
        for(int i=0; i<=90; i+=10) {
            System.out.print(i + " ");
        }
        
    }
}
cs



문제3. 0부터 10까지 모두 더한 값을 출력해보자.

1
2
3
4
5
6
7
8
9
10
11
12
13
package forex;
 
public class ForTest05 {
    public static void main(String[] args) {
 
        int sum = 0;
        for(int i=0; i<=10; i++) {
            sum += i;
        }
        System.out.println(sum);
        
    }
}
cs



문제4. 숫자를 5번 입력받고, 입력받을 때마다 더해지는 식을 작성해보자.

    ex. 숫자를 입력하세요: 5 출력: 5

                숫자를 입력하세요: 6 출력: 11

    숫자를 입력하세요: 3 출력: 14

   숫자를 입력하세요: 2 출력: 16

   숫자를 입력하세요: 4 출력: 20

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package forex;
 
import java.util.Scanner;
 
public class ForTest06 {
    public static void main(String[] args) {
 
        Scanner sc = new Scanner(System.in);
        
        int sum = 0;
        for(int i=0; i<5; i++) {
            System.out.print("숫자 5개를 입력하세요: ");
            int num = sc.nextInt();
            sum += num;
            System.out.println("출력: " + sum);
        }
        
    }
}
cs



문제5. 0부터 20까지 짝수만 출력해보자.

1
2
3
4
5
6
7
8
9
10
11
12
13
package forex;
 
public class ForTest07 {
    public static void main(String[] args) {
 
        for(int i=0; i<21; i++) {
            if (i % == 0) {
                System.out.print(i + " ");
            }
        }
        
    }
}
cs