Advertisement
PawsonCz

Untitled

Jan 9th, 2021
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. public class Program
  5. {
  6. public class markaAuta
  7. {
  8. String bryka;
  9. }
  10. public static void Main()
  11. {
  12. markaAuta mojaMarka = new markaAuta();
  13. mojaMarka.bryka = "Opel";
  14. Console.WriteLine($"Moją ulubioną marką samochodów jest {mojaMarka}");
  15. Console.WriteLine("Jestem programistą C#");
  16. Console.ReadLine();
  17.  
  18.  
  19.  
  20. }
  21.  
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement