Guest User

Untitled

a guest
Jun 24th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. package de.kopis.katas;
  2.  
  3. public class CoverMeSimple {
  4. public int simple(int x, int y) {
  5. int z = x;
  6.  
  7. if(y > x)
  8. z = y;
  9. z *= 2;
  10.  
  11. return z;
  12. }
  13. }
Add Comment
Please, Sign In to add comment