Advertisement
AnitaN

01.Intro-Programming-Homework/05.Print-Your-Name

Mar 9th, 2014
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. //Problem 5. Print Your Name
  2. //Modify the previous application to print your name.
  3. //Ensure you have named the application well (e.g. “PrintMyName”).
  4.  
  5. using System;
  6.  
  7. class PrintMyName
  8. {
  9.     static void Main()
  10.     {
  11.         Console.WriteLine("My name is Satoshi.");
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement