function Tr(paciente){
let pacienteTr = document.createElement("tr")
let nomeTd = document.createElement("td")
let pesoTd = document.createElement("td")
let alturaTd = document.createElement("td")
let gorduraTd = document.createElement("td")
let imcTd = document.createElement("td")
nomeTd.textContent = paciente.nome
pesoTd.textContent = paciente.peso
alturaTd.textContent = paciente.altura
gorduraTd.textContent = paciente.gordura
imcTd.textContent = paciente.imc
pacienteTr.appendChild(nomeTd)
pacienteTr.appendChild(pesoTd)
pacienteTr.appendChild(alturaTd)
pacienteTr.appendChild(gorduraTd)
pacienteTr.appendChild(imcTd)
return pacienteTr
}