整数が範囲内にあるかどうかを確認する簡単な方法はありますか?
お気に入り
int x = 15;
if(x==1x)
{
std::cout << "Yes it falls in the range 10-19" << std::endl;
}
私が理解している限り、それに最も近いのは
((x>9) && (x<20))?(std::cout << "Yes" << std::endl):(std::cout << "No" << std::endl);
またはそのようなもの。
最初の方法のようなものはありますか?