You don't. You could try this:
switch(number)
{
case 4:
case 5:
case 6:
case 7:
amount = 1;
break;
}
As a way to handle this where the other cases will "fall-through" to the one you want. Or you could use an if statement that would be easier.
switch(number)
{
case 4,5,6,7:
amount = 1;
break;
}
this isnt working, so how do I include 4-7 in one statement?

Chowhound
Comic Vine
GameFAQs
GameSpot
Giant Bomb
TechRepublic