I would like to have these two tables as items of this list. Currently they are appearing outside the list, on the top of the page.
\documentclass[12pt, oneside]{article}
\usepackage[brazil]{babel}
\usepackage[latin1,utf8]{inputenc}
\usepackage{enumerate}
\begin{document}
%%%%%%%%% problem
\begin{itemize}
\item item1
\item item2
\begin{table}
\parbox{.45\linewidth}{
\centering
\begin{tabular}{l|ll}
+ & 0 & 1 \\ \hline
0 & 0 & 1 \\
1 & 1 & 0 \\
\end{tabular}
\caption{adicao}
}
\hfill
\parbox{.45\linewidth}{
\centering
\begin{tabular}{l|ll}
. & 0 & 1 \\ \hline
0 & 0 & 1 \\
1 & 0 & 1 \\
\end{tabular}
\caption{mult}
}
\end{table}
\end{itemize}
\end{document}
I have been searching about how to do it, however, until now I've only found how to do the opposite (how to insert lists in tables).

\documentclass{...}and ending with\end{document}. – Mar 13 '14 at 16:11