Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Test
- {
- static int FactV(int value)
- {
- int result;
- System.Console.WriteLine("Вызов метода для числа " + value);
- if (value == 0)
- {
- System.Console.WriteLine("Возврат значения {0}!", value);
- return 1;
- }
- result = FactV(value - 1) * value;
- System.Console.WriteLine("Возврат значения {0}!", value);
- return result;
- }
- static void Main()
- {
- System.Console.WriteLine(FactV(10));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment