Advertisement
taison11

mat

May 21st, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. enum Jezyki { Angielski, Niemiecki, Francuski };
  9.  
  10. namespace jpwp_kisiel
  11. {
  12.     abstract class Matura
  13.     {
  14.         public Hashtable wyniki = new Hashtable();
  15.         public Matura()
  16.         {
  17.            
  18.         }
  19.  
  20.         public Matura(Jezyki jezyk)
  21.         {
  22.  
  23.         }
  24.  
  25.         void OpiszZadanie()
  26.         {
  27.             Console.WriteLine("Opis zadania");
  28.         }
  29.     }
  30.  
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement