Advertisement
fbinnzhivko

Practice Chars And Strings

May 19th, 2016
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System;
  2. class Program
  3. {
  4.     private static void Main()
  5.     {
  6.         string softuni = "Software University";
  7.         char b = 'B';
  8.         char y = 'y';
  9.         char e = 'e';
  10.         string iLoveProg = "I love programming";
  11.  
  12.         Console.WriteLine("{0}\n{1}\n{2}\n{3}\n{4}",softuni,b,y,e,iLoveProg);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement