首页 > 代码库 > C和指针 第十三章 习题
C和指针 第十三章 习题
1,1标准输入读入字符,统计各类字符所占百分比
#include <stdio.h>#include <ctype.h>//不可打印字符int isunprint(int ch){ return !isprint(ch);}//转换表,储存各个判断函数指针int (*tables[])(int) = {iscntrl, isspace, isdigit, islower, isupper, ispunct, isunprint};int main(){ int count[7] = {0}; int ch; int idx; while((ch = getchar()) != EOF){ //转换表中的函数进行测试,如果符合对应的数组项+1 for(idx = 0; idx < 7; idx++){ if(tables[idx](ch)){ count[idx]++; } } } for(idx = 0; idx < 7; idx++){ printf("%d\n", count[idx]); } return 0;}
运行结果:
1.4 编写sort函数,对任何类型数组进行排序
C和指针 第十三章 习题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。