The truss shown consists of six members and is supported by a short link at A, two short links at B, and a ball and socket at D. Determine the force in each of the members for the given loading.
ENGR 121 B Lab Notes for 10/19/2016 Spencer Kociba ● If/else statements ○ if() ■ Operation where if what is in () is true, it will carry out the action given right after the condition on the next line ○ elseif() ■ Only executes if 1st condition is false; will check a second condition ○ else() ■ If the “if()” and “elseif()” statements are false, follow the commands after this ○ Progression: ■ if() ■ elseif() ■ elseif() ■ …. ■ else() ○ **stops progressing as soon as a condition is satisfied ○ Nesting ■ if()