Looping through your pages and displaying them on one page is easy
<?php query_posts('post_type=page'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
But what if I want to exclude sub pages and only show the main pages? I don't know how to adjust it. Any help would be greatly appreciated.