print(3, 5.3f, lottos); 이렇게 일때 static void print(?, ?, ?) ?는 무엇일까가 문제 package test; public class Program_1 { public static void main(String[] args) { int[] lottos = new int[3]; print(3, 5.3f, lottos); } //함수만들기 보충 static void print(int a, float b, int[] lottos) { System.out.println(a); System.out.println(b); System.out.println(c); } } 타입에 맞게 매개변수를 설정해주면됨 package test; public class Program_1 { pu..