Advertisement
AlexeySudakov

Untitled

Jul 17th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. ///1.3.6.1
  2. using System;
  3.  
  4. namespace homework
  5. {
  6. class Program
  7. {
  8. public static void Main(string[] args)
  9. {
  10. Console.WriteLine(SomeMul(10,20));
  11. Console.WriteLine(SomeMul(10,20)*10);
  12. Console.Write("Press any key to continue . . . ");
  13. Console.ReadKey(true);
  14. }
  15.  
  16. public static int SomeMul (int first, int second = 10)
  17. {
  18. int rezultat = first * second;
  19. return rezultat;
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement