Describe the shape and palpable line formed by the clavicle and scapula.
L6 Flow control -> while loops (HW2)-> repeat sections of code depending upon a condition Syntax: while(keywords) condition statement End(keyword) -repeat statements as long as the condition is true/good -recheck the question after statements Code While loop Condition-true-> statement False= rest of code Condition-> just like if statement (< > <= >= == ~= && ||) Flow control inside flow control Important key words true: good/success/1 false: bad/failed/0 break: ending a loop early (immediately) -> only ends the closest loop continue: stops current loop iteration (amount of times a loop has ran) and restarts at the beginning (retry or reset) create a code to calculate a factorial 5! = 5*4*3*2*1 = 120 Tip #1loops will forget the work you do as soon as the loop goes again (factorial = factorial*num; Tip#2 often you need to create variables before the loop starts w/ some initial, good value Calculate the geometric series; 1+ ½ + ¼ + 1/8 + 1/16 +…