Advertisement
izulllllll

Untitled

Nov 25th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. namespace WindowsFormsApplication6
  2. {
  3.     class tampil : printer, monitor
  4.     {
  5.         public string cetakPrinter(string kertas, int jumlah)
  6.         {
  7.             string tampilkan;
  8.             tampilkan = "dicetak di kertas ukuran " + kertas + " sejumlah " + jumlah.ToString() + " Lembar";
  9.             return tampilkan;
  10.         }
  11.         public string tampilMonitor(string resolusi)
  12.         {
  13.             string tampilkan;
  14.             tampilkan = "ditampilkan di monitor dengan resolusi " + resolusi;
  15.             return tampilkan;
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement