50 likes | 128 Views
CSC110 Fundamentals of CSC L3P3 Winning Streak. Using VBSA. How It Works (Load). NEW : Clears the ListBox , then adds in the word FLIPS. How It Works (Flip Coin). flipCoin third Picture1 ( Num before WAIT) WAIT List2.index = third ( Num after WAIT) ‘1 = HEADS, 2 = TAILS
E N D
CSC110Fundamentals of CSCL3P3 Winning Streak Using VBSA
How It Works (Load) NEW: Clears the ListBox, thenadds in the word FLIPS.
How It Works (Flip Coin) flipCoin third Picture1 (Num before WAIT) WAIT List2.index = third(Num after WAIT) ‘1 = HEADS, 2 = TAILS SELECT CASE List2 CASE 1 List1.Add = HEADS CASE 2 List1.Add = TAILS CASE ELSE END SELECT ‘Multiply all three together product = first * second product = product * third IF product = 1 THEN MsgBox 3 HEADS in a row – HEADS wins!!! END ELSE ENDIF IF product = 8 THEN MsgBox 3 TAILS in a row – TAILS wins!!! END ELSE ENDIF ‘Prepare for the next flip first = second second = third ‘Try again! BeforeWAIT & After
How It Works (Flip Coin) flipCointhird Picture1 (Num before WAIT) WAIT List2.index = third(Num after WAIT) ‘1 = HEADS, 2 = TAILS SELECT CASE List2 CASE 1 List1.Add = HEADS CASE 2 List1.Add = TAILS CASE ELSE END SELECT ‘Multiply all three together product = first * second product = product * third IF product = 1 THEN MsgBox 3 HEADS in a row – HEADS wins!!! END ELSE ENDIF IF product = 8 THEN MsgBox 3 TAILS in a row – TAILS wins!!! END ELSE ENDIF ‘Prepare for the next flip first = second second = third ‘Try again! BeforeWAIT & After
How It Works (Flip Coin) flipCointhird Picture1 (Num before WAIT) WAIT List2.index = third(Num after WAIT) ‘1 = HEADS, 2 = TAILS SELECT CASE List2 CASE 1 List1.Add = HEADS CASE 2 List1.Add = TAILS CASE ELSE END SELECT ‘Multiply all three together product = first * second product = product * third IF product = 1 THEN MsgBox 3 HEADS in a row – HEADS wins!!! END ELSE ENDIF IF product = 8 THEN MsgBox 3 TAILS in a row – TAILS wins!!! END ELSE ENDIF ‘Prepare for the next flip first = second second = third ‘Try again! BeforeWAIT & After