Programming Logic Final Project Part 2
Hello Internet!!! I am going to show off my final project for my logic/programming class. If you go to THIS link, you can see the parameters of the project. We were able to submit either a flowchart, pseudocode or the actual program for full credit. We were also able to complete more than one for extra credit. I chose to do both a flowchart and pseudocode. This post will showcase my pseudocode. Below is a video explaining my pseudocode and showing it off And below is my actual pseudocode. //Declarations public class Weapon public class Character private double probabilityOfHitting public void setName(String newName) name = newName //name setter created public void setProbabilityOfHitting( double newProbabilityOfHitting) probabilityOfHitting = newProbabilityOfHitting //probability of hitting setter created ...