mjc65

Coffee

Apr 22nd, 2020
446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. bool cupFull = true;
  2. bool sugarAdded = false;
  3. int result = 0;
  4.  
  5. if (cupFull)
  6. {
  7.     if(sugarAdded)
  8.     {
  9.        result = 1;
  10.     }
  11.     else
  12.     {
  13.        result = 2;
  14.     }
  15.  }
  16.  else
  17.  {
  18.      result = 3;
  19.  }
  20.  
  21.   return result;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment