“Longitud establecida del vector 2D” Código de respuesta

Longitud de la matriz 2d C

int rows = sizeof(arr) / sizeof(arr[0]); // returns rows
int col = sizeof(arr[0]) / sizeof(int); // returns col
0xdevbot

Cómo obtener el tamaño del vector 2D en c

myVector[
  Vector[0, 4, 2, 5],
  Vector[1, 4, 2]
];

/*When you call for myVector[1].size() it would return 3 and [0] would return 4.

For the amount of rows (int vectors) in the 2d vector, you can just use myVector.size()

You can run this to see it in actions*/
Depressed Dormouse

Longitud establecida del vector 2D

 function setLength(l: number) {
        this.length = l
        this.x = Math.cos(this.angle) * l
        this.y = Math.sin(this.angle) * l
}
Himanshu Jangid

Respuestas similares a “Longitud establecida del vector 2D”

Preguntas similares a “Longitud establecida del vector 2D”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código