摘要: A. Theatre Square time limit per test:1 second memory limit per test:256 megabytes input:standard input output:standard output Theatre Square in the c 阅读全文
posted @ 2017-03-10 23:24 Angel_Kitty 阅读(464) 评论(0) 推荐(1)
摘要: isupper()函数可以用来判断字符c是否为大写英文字母! 原型:extern int isupper(int c); 头文件:ctype.h 功能:判断字符c是否为大写英文字母 说明:当参数c为大写英文字母(A-Z)时,返回非零值,否则返回零。 附加说明: 此为宏定义,非真正函数。 范例:找出字 阅读全文
posted @ 2017-03-10 21:00 Angel_Kitty 阅读(783) 评论(0) 推荐(0)
摘要: isdigit是计算机应用C语言中的一个函数,主要用于检查参数c是否为阿拉伯数字0到9。 相关函数 isdigit 表头文件 #include <ctype.h>(C语言),#include <cctype>(C++) 定义函数 int isdigit(int c) 函数说明 检查参数c是否为阿拉伯 阅读全文
posted @ 2017-03-10 20:21 Angel_Kitty 阅读(2006) 评论(0) 推荐(0)