Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- /*
- * Create console application that prints your first and last name, each at a separate line.
- */
- class PrintNames
- {
- static void Main()
- {
- Console.WriteLine(" First name\n Last Name");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement