答案1
如果希望第一行有一个空行,则必须在&
更改行之前更改列:
\hline &&&& \\
如果你不想,只需:
\hline 15 & 2.5 & 10 & 7.5 & 5 \\
平均能量损失
\documentclass[]{article}
\begin{document}
\begin{tabular}{| c | c | c | c | c |}
\hline &&&& \\
15&2.5&10&7.5&5\\
\hline
\end{tabular}
\medskip
\begin{tabular}{| c | c | c | c | c |}
\hline % &&&& \\
15&2.5&10&7.5&5\\
\hline
\end{tabular}
\end{document}