How do I limit the number of posts displayed to one?

<?php query_posts('cat=24&posts_per_page=1'); ?>

But using query_posts is a very bad idea.

This is straigt from the Codex:

For general post queries, use WP_Query or get_posts.

It is strongly recommended that you use the pre_get_posts filter instead, and alter the main query by checking is_main_query.