//Shipra Gupta //Feb 1, 2008 //Chapter Data 1, Processing (B.Fry, C.Ray) //Excercise 1 --> Classify the number used daily into int or float //Excercise 2 --> assign values to int and float variables and print in console //Excercise 3 --> create composition that scales proportionally with diff // window sizes. Put diff values into size() to test. //Ex 1 --> //example of float is the amount on the grocery bill //example ofint is the number of pencils I have in my stationary //Ex 2 --> int a = 6; float b = 5.5; float c; c = a + b; println("The sum of "+ a +" and " + b + " is " + c); //Ex 3 --> size(200, 200); background(255,200,100); smooth(); fill(200,0,255,45); ellipse(width/2, height/2, width/2, height/2); rectMode(CENTER); rect(width/2, height/2, width/3, height/3);