Advertisement
Blagovest

PracticeCharsAndStrings

Jul 24th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace PracticeCharsAndStrings
  8. {
  9. class PracticeCharsAndStrings
  10. {
  11. static void Main(string[] args)
  12. {
  13. string SU ="Software University";
  14. char B = 'B';
  15. char y = 'y';
  16. char e = 'e';
  17. string ILP = "I love programming";
  18. Console.WriteLine(SU);
  19. Console.WriteLine(B);
  20. Console.WriteLine(y);
  21. Console.WriteLine(e);
  22. Console.WriteLine(ILP);
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement