Structured English
Different types of structured English Sequential structure A block of instructions with no branching, this is the most basic form of Structured English and therefore is the easiest to understand. to complete it, go through each line, and complete the action. Decision structure uses IF statements, meaning some actions can be ignored IF the following condition is true or not to complete it, you would need to know if the condition is true or not, to know whether to ignore certain steps Case structure a form of decision structure where the cases are mutually exclusive, these use ELSEIF Iteration Blocks of statements that are repeated until they are complete Example of Structured English, to find an average of 5 numbers. INPUT 5 numbers ADD the 5 numbers together DIVIDE the new number by 5 OUTPUT the final number Source and more info at https://www.w3computing.com/systemsanalysis/writing-structured-english/ an Application chess bots - these use algorithms to take the current posi...