Advertisement
divery

Untitled

Mar 7th, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. static void Main()
  2. {
  3. int MyAge = 24;
  4. int Ten = 10;
  5. int Age = MyAge + Ten;
  6. string PrintText = "This is my age after ten years";
  7.  
  8. Console.WriteLine(PrintText + ":" + " " + Age);
  9.  
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement