The length of a rectangle is stored in a double variable named length, the width in one named width. write an expression whose value is the length of the diagonal of the rectangle. submit

Respuesta :

sqrt(pow(length, 2) + pow(width, 2))

ACCESS MORE