The /24 means there are 24 bits in the subnet mask, or 255.255.255.0
router>en
router#conf t
router(config)#int fa0/0
router(config-if)#ip add 192.168.1.1 255.255.255.0
Like that. The number after the slash is the number of bits in the network portion of the subnet mask. If it were /21, for example, then it would be 255.255.248.0
In binary, it would be
11111111.11111111.11111000.00000000, which = 255.255.255.448 in decimal form.
The subnet mask is 32 bits, and all the leftover bits are 0
Count the one's...in /24, there are 24 out of 32 bits that are set to 1, all occuring in "octets", or 8 at a time, separated by dots...
So a /24 is
11111111.11111111.11111111.00000000
Post back if you need more help, like on how exactly the mask determines what bits in the address itself are network bits and which are host bits.
Burt