Advertisement
Liverek

ResultManager

May 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class ResultManager {
  4. public ResultManager(int result) {
  5. System.out.println("Wynikiem wykonanego działania jest: " + result);
  6. }
  7.  
  8. public ResultManager(int result, String type) {
  9. System.out.println("Wynikiem " + type + " jest: " + result);
  10. }
  11.  
  12. public ResultManager(String sentence){
  13. System.out.println(sentence);
  14.  
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement