Simply use the get_post_field() function to get the post content. The following example will display the content of the post with id $post_id:
echo get_post_field('post_content', $post_id);
Indeed, the function can be used to get other fields from the post. See the codex page for reference.