Sunday, May 26, 2019

Programming – Example of a Selection Structure

IntroductionThe purpose of this paper is to provide a simple example of a selection organize that is contained as part of the Programming Solution Proposal I am developing throughout the course of this programming class. The selection structure I chose to find an example of isnt really inclusive as part of my original programming proposal due in week 5, however, I devised a very simple If-Then-Else structure that uses somewhat of the same information and calculation as what I may use in my closing proposal. Ive written the pseudocode for a section that at this time appears to make sense to use, given the selection structure I chose, and I also paralleled that with a Visual Logic com/ card/flowchart. The visual logic flowchart was executed correctly with specific set that are to be used in order for others to properly foot race it. These values will change as the program gets fine-tuned, however, for now there are specific values that must be used to obtain the correct percentag es. pattern of the structureThe reason I chose the If-Then-Else structure is because it seemed to make the most sense for my program and it didnt appear to be too complicated a structure to master. make up though this structure may not be included as part of my final proposal paper, I thought it would be good to snuff it with and verify if I could somehow make it work. The program Ill ultimately be creating is one where seasonal stats will be entered in by an participator coach, for athletes on any given basketball team.Through this they will be able to determine a players overall survey goal average, free throw percentage, jounce average, etc. However, for now, Ive decided to simply use an If-Then-Else structure that displays a friendly output message of what the user might see if he/she entered their field goals attemptedvalue and field goals made value. The pseudocode for the If-Then-Else structureAgain, I must reiterate, that the selection structure I chose to use may not be part of my final proposal paper, however, the pseudocode that is displayed below is a simple and short example of how I used the information for my original proposal, using the If-Then-Else structure Write Enter gist of field goals attempted Input FGA Write Enter amount of field goals made Input FGM fix Average = FGM / FGA If Average => 50 Then Set FieldGoalAverage = Average Write Your field goal average is + FieldGoalAverage + % Else Write Your field goal average is + FieldGoalAverage + % Write You need to work on your shooting plunk for End IfVisual Logic flowchart The Visual Logic flowchart I put together, which parallels the pseudocode above, has been executed successfully. The field goal average in this VL example is cipher using the following values FieldGoalAttempts (FGsAttempted) 5000FieldGoalsMade (FGsMade) 50 The values for the variables above test the True decision statement. Entering the following values below execute and test the False decision statement Fie ldGoalAttempts (FGsAttempted) 2000FieldGoalsMade (FGsMade) 50 The .vls file has been uploaded as a separate attachment in the Assignments tab of the UoP Student website.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.