[Tex/LaTex] Write a question in LaTeX

positioning

I'm writing a report and would like to put several questions in a \subsubsection{} with the following format (questions appear in the middle of the page)

1.2. Questions

                          *This is the question one*

This is the answer for question one.

                          *This is another question*

This is the answer for the question two.

Best Answer

As cgnieder mentioned in his comment, the exercise package offers you ready to use environments and commands that could be useful for your purpose. A little example:

\documentclass{article}
\usepackage{exercise}
\usepackage{lipsum}% just to produce filler text

\renewcommand\ExerciseName{Question~}
\renewcommand\AnswerName{Answer to question}
\renewcommand\ExerciseHeader{%
  \noindent\parbox[t]{.18\textwidth}{%
    \bfseries\large\ExerciseName\ExerciseHeaderNB\hfill}%
  \parbox[t]{.72\textwidth}{%
    \centering\bfseries\large%
    \ExerciseHeaderTitle\ExerciseHeaderOrigin}%
  \par\medskip
}

\begin{document}

\section{Questions}
\begin{Exercise}[title={Some easy question}, label=que1]
\lipsum[2]
\end{Exercise}
\begin{Answer}[ref=que1]
\lipsum[2]
\end{Answer}
\begin{Exercise}[title={Some difficult question with a really really long title}, label=que2]
\lipsum[2]
\end{Exercise}
\begin{Answer}[ref=que2]
\lipsum[2]
\end{Answer}

\end{document}

enter image description here