Advertisement
Guest User

Concaténation

a guest
Jan 25th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. using System;
  2.  
  3. class MainClass {
  4. public static void Main (string[] args) {
  5. Console.WriteLine ("Please type something:");
  6. string firstUserEntry = Console.ReadLine();
  7. Console.WriteLine ("Please type something else:");
  8. string secondUserEntry = Console.ReadLine();
  9. Console.WriteLine (firstUserEntry + " " + secondUserEntry);
  10.  
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement