Facebook
From Balon, 3 Years ago, written in C#.
This paste is a reply to Re: PrintNum from Balon - view diff
Embed
Download Paste or View Raw
Hits: 188
  1. class AddOneToNum
  2.     {
  3.         public static void Ink(int num)
  4.         {
  5.             int a = num;
  6.             a++;
  7.             Console.WriteLine("Your number plus 1: {0}", a);
  8.             Console.Read();
  9.         }
  10.  
  11.         public static void Main()
  12.         {
  13.             Ink(4);
  14.         }
  15.     }