개요자바에서 사용하는 반복문에 대해서 알아보자! for문자바에서의 for문 또한 C/C++/C#/JS와 유사하다.인덱스를 활용한 for문을 통한 순회와, foreach처럼 동작하는 for문이 있다. public class Main { public static void main(String[] args) { int[] nums = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; for (int i = 0; i = 0; --i) System.out.print(nums[i] + " "); System.out.println(); for (int i : nums) System.out.print(i + " "); }} while문자바에서의 ..