

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Project; Professor: Sussman; Class: PROG LANG TECH & PDGMS; Subject: Computer Science; University: University of Maryland; Term: Spring 2001;
Typology: Study Guides, Projects, Research
1 / 3
This page cannot be seen from the preview
Don't miss anything!


CMCS 433, Spring 2002 - Alan Sussman 2
CMCS 433, Spring 2002 - Alan Sussman 3
CMCS 433, Spring 2002 - Alan Sussman 5
CMCS 433, Spring 2002 - Alan Sussman 6
CMCS 433, Spring 2002 - Alan Sussman 7
public class TestArrayTypes { public static void reverseArray(Object [] A) { for(int i=0, j=A.length-1; i<j; i++,j --) { Object tmp = A[i]; A[i] = A[j]; A[j] = tmp ; } } public static void main(String [] args) { reverseArray(args); for(int i=0; i < A.length; i++) System.out.println(args[i]); } } (^) CMCS 433, Spring 2002 - Alan Sussman 8
CMCS 433, Spring 2002 - Alan Sussman 9
CMCS 433, Spring 2002 - Alan Sussman 10
CMCS 433, Spring 2002 - Alan Sussman 12