About Page
08/30/2023
This is our first project. We practiced making images and labels display/disappear. We also practiced changing the properties, such as text and font, of labels.
|
|
Mailing Label
09/08/2023
In this project, we practiced taking text out of textboxes and putting them into custom labels. This program would create a mailing label using the inputs of the user, and would check to make sure they were valid inputs.
|
|
Car Rental
09/19/2023
In this project, we practiced using mathmatical functions. We would calculate the cost and create a bill for the customer using tthe info inputted.
|
|
BMI Calculator
09/25/2023
In this project, we calculated the BMI of the inputted numbers, and displayed text in labels based on this. It could calculate both metric and imperial inputs, and track averages of all the inputs.
|
|
Car Rental Upgrade
10/02/2023
In this project, we demonstrated our knowledge on how to use a try & catch to prevent a program from crashing due to invalid information in textboxes being stored in a variable. We also used radio buttons and check boxes. This program would calculate the cost of someone renting out a car for a certain amount of time. Each car had a different price, and optional features were availible for an additional cost. The customer information and price would be displayed on a label, which was similar to a receipt.
|
|
Triangle Checker
10/12/2023
This program took 3 numbers given by the user and checks if those lengths could create a triangle, and what type of triangle it was. It keeps data about past triangles checked, unless the reset button is pressed. I had also added an extra randomizer button which would "randomly" create 3 numbers which would be used as the inputs for the side lengths. We practiced our skills of math and comparisons.
|
|
Craps Game
10/20/2023
This project was a Craps Game which simulated a simplified version of the casino game. In this project, we learned how to create and use "random" numbers. We would use these random numbers to create a randomized outcome which would determine whether you won or lost the game. The player could place a bet, removing or adding the amount of money they bet if they won or lost. The highest bet is kept track of. The program would also keep track of how many rolls you have done per game, resetting once you won or lost.
|
|
Slot Machine
10/27/2023
This project was to create a program which simulated a simplified version of a slot machine. It would be able to take bets, and pay the player taking out of a prize pool/grand prize. It would correct any errors which the user made, and would tell the user what they did wrong. This helped to improve our skills in generating and using random numbers to create a random outcome. The random numbers were used to display an image which depended on what number was generated. If the three images matched, the player would win.
|
|
Over Under Calculator
11/14/2023
This project was to create a program which would be able to calculate the scores for each team in a game called Over Under, which is played by robots. Some of the scores depended on how large a number was compared to three other numbers, so we needed to compare all four numbers and rank them from least to greatest or greatest to least. You could either do this by comparing them using many if and if-else statements, or put them into a list, and sort themfrom there. It would also figure out which team won and add up all the points of each team upon clicking the "Results" button.
|
|
Incremental Game
12/01/2023
This project we practiced using timers and sounds to make a simple cookie-clicker/incremental game. The user would click an object, which gave them points. They could then spend these points on various upgrades, one being an autoclicker. In order for this autoclicker to work, a timer was used to make it run the code repeating every certain amount of time. We also had to include background music and a noise which played when the object was clicked on.
|
|
Spooky Staircase
12/13/2023
In this project we learnt how to use a 2d array to make a character move up and down an 8-stair staircase. The direction of the character would change depending on if they were going up or down. If the character reached the top or bottom, an alien or monster would stop them from continuing and play a sound. A button to move the character automatically is also included.
|
|
AI Chase
01/19/2024
In this project, we made a simple ai which would chase the player. The player could run away and shoot at the enemy. Every time the enemy dies, they would become faster. We also practiced using multiple forms, one for the game, and one for the menu.
|
|
2D Submarines
02/04/2024
In this project, we had to create a 2D array with 2 submarines which randomly moved around. Similar to the Spooky Staircase project, however would have to count collisions for each submarine and sink the submarine once they reached 25. Any time the submarines collided with eachother would also count. Other ways the submarines might be put into the same spot also were prevented. Once both submarines sank, the program would reset and randomize their positions as in the start.
|
|
Fishing Simulator
02/20/2024
In this project, we created a 2-D fishing game where the player would try to catch as many fish as fast as they could. A predator would also chase around the fish, killing them when they were hit by it. The player would move around on a boat, and have to try to hit the fish with a hook dropped from it. Each fish caught was worth a certain amount of points, and the player would try to earn the most points possible. Other small details were also added.
|
|
Tic-Tac-Toe
02/27/2024
In this project we had to create a tic-tac-toe game able to be played off of the application. We practiced using for loops to check a
// 2d array. It would track the amount of wins each player had, and check
// when a player won.
|
|
Board Game
03/15/2024
In this project, we practiced using arrays to make a board game. The user would roll the dice, and depending on what they rolled, they would move forward to a certain spot. Some spots had certain events which happened, such as sending the player back or forward, or giving them an extra life.
|
|
Bees Simulator
03/28/2024
In this project, we practiced using lists and AI tracking. The bees would spawn and add to the list, removing as they disappeared to save processing power. They would fly to and from a flower from a beehive. My unique feature was a nuclear explosion.
|
|
Quickashef (FINAL PROJECT)
05/##/2024
work in progress
|
|