Advertisement
zainarfi00

Self Check 3.2

Oct 1st, 2015
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /**
  2. *Self Check 3.2 Number 17
  3. *
  4. * Zain Arfi
  5. * @version (a version number or a date)
  6. */
  7. public class countQuarters
  8. {
  9. public static void main(String[] args)
  10. {
  11. int cents= 64;
  12. countQuarters(cents);
  13. }
  14. public static void countQuarters(int x)
  15. {
  16. System.out.println(x%10000/25);
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement