TailTests.StructFacSumDeepStackStatic C# (CSharp) Метод

StructFacSumDeepStackStatic() публичный статический Метод

public static StructFacSumDeepStackStatic ( int x, int y, double a, double b, Point p, int z ) : int
x int
y int
a double
b double
p Point
z int
Результат int
    public static int StructFacSumDeepStackStatic(int x, int y, double a, double b, Point p, int z)
    {

        if(x == 0)
        {
            return p.x + p.y;
        }
        p.x++;
        p.y++;
        return TailTests.StructFacSumDeepStackStatic(x-1,y,a,b,p,1);
    }

Usage Example

Пример #1
0
 public static int StructFacSumDeepStackStatic(int x, int y, double a, double b, Point p, int z)
 {
     if (x == 0)
     {
         return(p.x + p.y);
     }
     p.x++;
     p.y++;
     return(TailTests.StructFacSumDeepStackStatic(x - 1, y, a, b, p, 1));
 }
All Usage Examples Of TailTests::StructFacSumDeepStackStatic