第14章:字符串函数 英语单词 1. uppercase ⼤写字⺟ 2. lowercase ⼩写字⺟ 3. left 左 4. substring: ⼦字符串 1. sub:次要的、副、⼦的 2. 副标题:subtitle 5. string 字符串 6. trim:修剪 7. reverse:相
关系运算符的优先级低于算术运算符,高于赋值运算符: int x = 5, y = 10, z = 15; bool result = x + y > z * 2; // 等同于 (x + y) > (z * 2) Console.WriteLine(result); // false