Short answer: use Rijndael.
What the various options are:
RC2 is a weak, broken cipher built in the late 80s for export, because at the time American companies were restricted from exporting 'strong' encryption. It has a key length of 40 bits, which makes brute forcing it on today's hardware trivial (it is, after all, 20 years later).
It's name stands for Rivest Cipher No. 2, after it's creator Ron Rivest (a world-renown crpytographer, the 'R' in RSA).
DES was the Data Encryption Standard, and was termed strong crpytography. With a key length of 56 bits, however, it is now within range of brute-force decryption.
3DES is running DES three times. Just running DES twice doesn't make it much stronger, actually, but the third time does. It is effectively 116 bit encrpytion (with a 196-bit key).
3DES is a very good, strong encrpytion by today's standard.
So RC2, DES and 3DES are in the cipher suite to provide compatibility with business systems that use those ciphers.
Rijndael is however the modern cipher of choice. It is the official replacement for DES, termed the Advanced Encryption Standard (AES).
It comes in a range of keysizes, but it is important to use 128-bit. Only use other key lengths (including the longest, 256-bit) for compatibility reasons.