Pro_Unit

Untitled

Feb 17th, 2020
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. class Program
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             int number = 2;
  6.             Console.WriteLine(number); // 2
  7.  
  8.             Doule(number);
  9.         }
  10.         // Double - удвоить    
  11.         public static void Doule(int number)
  12.         {
  13.             int doubleNumber = number * 2;
  14.             Console.WriteLine(doubleNumber); // 4
  15.         }
  16.     }
Add Comment
Please, Sign In to add comment