top of page
Digital Construction

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

If you have information on this man, please call (831)-277-Call. (1).png

Easy Button 

We had to make a 4 shapes with a gossan blur gloss and drop shadow. 8/16

Easy-button.png

Softer's

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

B-card_edited.jpg
Softers menu.png
image.png

More projects

Chimera_1.5x.jpg
Wrinkle.png
Acne.png
Flonat.jpg
Liquid IV BEN.png
AIM BEN.jpg

LvL 1

The first level

This is the starting room in my game. It is full of cobwebs and cages that have long been empty.

8/11/24

  • Facebook
  • Twitter
  • LinkedIn
  • Instagram
image_2024-08-11_155953251.png

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);
    }
    
}

bottom of page