Computer Science, asked by sophiastephen20, 1 year ago

write a conditional statement to check whether the value num is lying between 1500 and 2200

Answers

Answered by UnknownDude
4
if(value>=1500&&value<=2200)
{
//The stuff u want to do
}

sophiastephen20: thanks
Similar questions