通常,程序员使用返回布尔值 true 或 false 的布尔函数(true em> 或假)。 这些函数对于检查属性很有用。 考虑编写检查数字均匀性的逻辑函数的两个示例
bool isEven(int n) { 返回(n % 2 == 0); }
bool isEven(int n) { 如果(n%2==0){ 返回真; } 别的 { 返回假; } }
return
1000 ms 256 Mb Rules for program design and list of errors in automatic problem checking