
Projects
View Gallery
This is a place were I will be show casing a lot of my school and personal projects.
Characters
Last Updated 8/10/24








Wanted
We had to make a wanted poster for one of my teachers, so I choose my computer class. 8/8/24
-277-Call_%20(1).png)
Easy Button
We had to make a 4 shapes with a gossan blur gloss and drop shadow. 8/16

Softer's
This is a small collection from my class. It is a knock off foster freeze restaurant menu, and business card



More projects












This is one of my code sprints. It has 4 different Functions/runs.
public class MyProgram extends ConsoleProgram
{
public void run()
{
//random numbers
int[] random= new int [10];
for(int i = 0; i < random.length; i++)
{
int roll = Randomizer.nextInt(1, 50);
random[i] = roll;
System.out.print(" " + random[i] + ",");
}
println("");
//get Average
double average = 0;
for(int i=0; i < random.length; i++)
{
average += random[i];
}
average = average/random.length;
System.out.println(average);
//number finder
int imp = readInt("Pick a number 1- 50:\n");
int found =0;
if(imp < 50 || imp > 1)
{
for(int i =0; i < random.length; i++)
{
if(random[i] == imp && found < 1)
{
println("Found it!");
found++;
}
}
if(found == 0)
{
println("Not here :(");
}
}
else
{
println("Not here :(");
}
//Max number
int max = 0;
int index =0;
for(int a = 0; a < random.length; a++)
{
for(int i = 0; i < random.length; i++)
{
if(random[a] > random[i] && random[a] > max)
{
max = random[a];
index = a;
}
}
}
println("The largest number is " + max + " and it's in index " + index);
}
}




