C++ のキーワード: and
提供: cppreference.com
用途
&&演算子の代替表現
例
Run this code
#include <iostream>
int n;
int main()
{
if(n > 0 and n < 5)
{
std::cout << "n is small and positive\n";
}
}