Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class PracticeCharactersAndStrings
- {
- static void Main()
- {
- string softuni = "Software University";
- char b = 'B';
- char y = 'Y';
- char e = 'E';
- string iLoveProg = "I love programming";
- Console.WriteLine(softuni);
- Console.WriteLine(b);
- Console.WriteLine(y);
- Console.WriteLine(e);
- Console.WriteLine(iLoveProg);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement