摘要:
头文件: or 在c语言中功能:判断一个字符是否是英文字符,是大写返回1,是小写返回2,不是英文字符返回0;在标准c中相当于isuppe(ch) 和islower(ch)案例:将字符串中的非字符略掉:#include#includeusing namespace std;int main(){ i... 阅读全文
摘要:
以10为底的log函数:形式为 double log10(double x)以e为底的log函数(即 ln)double log (double x)如何表达log 以a为底b的对数:用换底公式:可以表达为:log(a)/log(b)#include#includeusing namespace s... 阅读全文