Lesson 7: For -> While

PHOTO EMBED

Thu Oct 03 2024 22:08:15 GMT+0000 (Coordinated Universal Time)

Saved by @arutonee

public class Main {
	public static void main(String[] args) {
    	for (int i = 20; i != 30; i += 2) {
            System.out.println(i);
        }
    }
}
content_copyCOPY