查看“Array”的源代码
←
Array
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
<pre> #include <stdio.h> /* 统计各个数字,空白符 以及和其它字符出现的次数 count digits, white space, others */ main() { int c, i, nwhite, nother; int ndigit[10]; nwhite = nother = 0; for (i = 0; i < 10; ++i) ndigit[i] = 0; while (( c = getchar() ) != EOF) if ( c >= '0' && c <= '9') ++ndigit[c-'0']; else if ( c == ' ' || c == '\n' || c == '\t') ++ nwhite; else ++nother; printf("digits ="); for ( i =0; i < 10; ++i) printf("%d", ndigit[i]); printf(", while space = %d, other = %d\n", nwhite, nother); } </pre> [[category:c]]
返回至
Array
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息