您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
127 B

  1. #include "tof.h"
  2. bool tof(string a)
  3. {
  4. string b = "false";
  5. if (a == b)
  6. {
  7. return false;
  8. }
  9. else
  10. {
  11. return true;
  12. }
  13. }