#include enum weather { clouds = 30, rain = 5, sunny = 255, storm = 1 }; enum boolean { BTRUE = 1, BFALSE = 0 }; int main( void ) { weather today = rain; cout << clouds << ' ' << rain << ' ' << sunny << ' ' << storm << endl; cout << "today: " << today << endl; }