Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. package com.un4;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. Printer printer = new Printer(50,false);
  8. System.out.println("Initial page count = " + printer.getPagesPrinted());
  9.  
  10. int pagesPrinted = printer.printPages(4);
  11. System.out.println("pages printed was " + pagesPrinted +
  12. " new total print count for printer = " + printer.getPagesPrinted());
  13.  
  14. pagesPrinted = printer.printPages(2);
  15. System.out.println("pages printed was " + pagesPrinted +
  16. " new total print count for printer = " + printer.getPagesPrinted());
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement