Guest User

Untitled

a guest
May 21st, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. if (iNumberOfCards == 2)
  3. {
  4. (iSumOfCards) == (iFirstCard) + (iSecondCard);
  5. }
  6. else if (iNumberOfCards == 3)
  7. {
  8. (iSumOfCards) == (iFirstCard) + (iSecondCard) + (iThirdCard);
  9. }
  10. else if (iNumberOfCards == 4)
  11. {
  12. (iSumOfCards) == (iFirstCard) + (iSecondCard) + (iThirdCard) + (iFourthCard);
  13. }
  14. else if (iNumberOfCards == 5)
  15. {
  16. (iSumOfCards) == (iFirstCard) + (iSecondCard) + (iThirdCard) + (iFourthCard) + (iFifthCard);
  17. }
Add Comment
Please, Sign In to add comment