inline bool IsSquareNumber( unsigned int number );
内联函数 (inline)
返回一个布尔值 (bool)
// 如果是C 那需要包含 stdbool.h 文件
接受一个 unsigned int 参数
// --------------------------------------------------------
C 中布尔类型的关键字是 _Bool ,stdbool.h 文件中有
typedef _Bool bool;
[[italic] 本帖最后由 cosdos 于 2007-12-2 10:51 编辑 [/italic]]