Advertisement
Guest User

Untitled

a guest
May 25th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class test{
  2. public static void Main()
  3. {
  4. string[] arr = {"Have","a","nice day!"};
  5. string s = arr[0] + " " + arr[1] + " " + arr[2];
  6. System.Console.WriteLine(s);
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement