import java.util.*; class Test1{ public static void main(String args[]) { Stack stack = new Stack(); for(int i=0; i<args.length; i++) { stack.push(new Integer(args[i])); System.out.println("스택에 push"+args[i]); } System.out.println("================"); int n = stack.search(new Integer(5)); if(n!=-1) System.out.println("스택에서 숫자 5의 위치는 "+n+"번째입니다."); else Syst..