I wrote the following table:
\begin{center}
\begin{tabular}{c|c c c c c}
$\bigoplus$ & 0 & 1 & 2 & 3 & 4\\
\hline
0 & 0 & 1 & 2 & 3 & 4\\
1 & 1 & 2 & 3 & 4 & 0\\
2 & 2 & 3 & 4 & 0 & 1\\
3 & 3 & 4 & 0 & 1 & 2\\
4 & 4 & 0 & 1 & 2 & 3\\
\end{tabular}
\quad
\begin{tabular}{c|c c c c c}
$\bigodot$ & 0 & 1 & 2 & 3 & 4\\
\hline
0 & 0 & 0 & 0 & 0 & 0\\
1 & 0 & 1 & 2 & 3 & 4\\
2 & 0 & 2 & 4 & 1 & 3\\
3 & 0 & 3 & 1 & 4 & 2\\
4 & 0 & 4 & 3 & 2 & 1\\
\end{tabular}
\end{center}
I want to name my first table 9.1 and second table 9.2 How can I do that please help

tabulars intableenvironments, and add a caption (and maybe a label for future reference) – NBur Oct 15 '21 at 15:42\begin{table[htb] \caption{caption text}\label{tab:a} \begin{tabular}{c|c c c c c} ...– Zarko Oct 15 '21 at 15:44