W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
#include
using namespace std; int main() { int passwordLength = 5; cout << (passwordLength >= 8) << "\n"; // 0 (假), 太短 cout << (passwordLength < 8) << "\n"; // 1 (真), 需要更多字符 return 0; }