Table of Contents

Assignment 14 - Pick and Propose your Project

The suggested DMA list of final projects: Handout

Other considerations:

Proposal

  1. Team Name:
  2. Team Members:
  3. Project Name:
  4. What programming language you are using:
  5. What it will do:

Sound in Processing

Shape Arrays

Asteroids

Pacman

Ball Games

Rainbow

Key Event - Java

Swarm AI

Sound in Java

javax

applet

All Packages in Java

Filling Array

		int[] array = new int [20];
		int index = 0;
 
		array[index] = 77;
		index++;
 
 
		array[index] = 88;
		index++;
 
		for (int i=0; i<array.length; i++)
			System.out.println(array[i]);
 
		for (int i=0; i<index; i++)
			System.out.println(array[i]);