Advertisement
AnitaN

01.Intro-Programming-Homework/07.Print-First-And-Last-Name

Mar 9th, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. //Problem 7.Print First and Last Name
  2. //Create console application that prints your first and last name,
  3. //each at a separate line.
  4.  
  5. using System;
  6.  
  7. class PrintFirstAndLastName
  8. {
  9.     static void Main()
  10.     {
  11.         Console.WriteLine("My First Name:Satoshi");
  12.         Console.WriteLine("My Second Name:Nakamoto");
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement