1. char readchar()
    {
    char tmp = ;
    char ch;
    bool read = false;
    while (ch = getchar())
    {
    if (ch == '-' || ch == '+')
    {
    read = true;
    tmp = ch;
    }
    else if (read)
    {
    break;
    }
    else
    {
    continue;
    }
    }
    return tmp;
    }
  2. ispunct(ch=getchar()) 非字母数字空格 返回1 字母数字空格返回0;

  3. isalpha() 大写返回2 小写返回1 数字返回0;
  4. tolower() 若是大写字母则返回小写 若是小写字母则返回小写

最新文章

  1. SQL注入处理
  2. 关于判断checkbox选中问题
  3. 浅析 - iOS应用程序的生命周期
  4. 剑指OFFER之反转链表(九度OJ1518)
  5. Eclipse使用技巧及个性化设计
  6. HTTP 错误 500.21 - Internal Server Error处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“ManagedPipelineHandler”
  7. Linux企业级项目实践之网络爬虫(2)——网络爬虫的结构与工作流程
  8. 27 Remove Element
  9. USACO Section 5.3 Big Barn(dp)
  10. sql数据黑马程序员——SQL入门
  11. Java 生产图片验证码
  12. Jmeter3.1 使用技巧
  13. .vue文件在webstorm中es6语法报错解决方法
  14. ASCII 大文字生成器
  15. springboot 整合 redis
  16. mac中安装lua5.1.5
  17. ReportViewer的使用总结
  18. andorid 表格布局
  19. JAVA8 List排序
  20. Intent 常用场景 FileProvider 拍照 裁剪 MD

热门文章

  1. 最新 朗玛信息java校招面经 (含整理过的面试题大全)
  2. Hadoop 单节点(或集群)基本配置信息
  3. 导出远程oracle数据库到本地
  4. Proxy 和aop
  5. 聊聊BIO、NIO与AIO的区别
  6. 剑指offer47:位运算+递归。求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
  7. Ubuntu 提示sudo: java: command not found解决办法
  8. extra bytes at beginning or within zipfile
  9. C# Redis分布式锁的应用 - 叶子栈 - SegmentFault 思否
  10. 沿路径动画(Animation Along a Path)