The goal is to remove the white line after the 1. in the second enumerate in the picture, so it will look like the first enumerate.
I don't like the first enumerate because it uses inline math, needs the white line in the code to make a new paragraph, and uses \displaystyle which I think is not the way to go: it feels like a 'hack'. Maybe I am mistaken, in that case say so, but I think there must be a good solution.
MWE:
\documentclass[english]{exam}
\usepackage[fleqn]{amsmath}
\begin{document}
\begin{enumerate} %result looks fine, but code ugly
\item
$\displaystyle \pi$
$\displaystyle 2\pi$
\end{enumerate}
\begin{enumerate} %code looks fine, but result ugly
\item
\[\pi\]
\[2\pi\]
\end{enumerate}
\end{document}





\displaystyle? – PHPirate May 16 '16 at 14:51\displaystylebecause I don't like typing that every time in an inline math environment. – PHPirate May 16 '16 at 14:55