摘要: 编写一个程序,以统计各个数字,空白符(包括空格符,制表符及换行符)以及所有其他字符出现的次数. 1 #include<stdio.h> 2 int main() 3 { 4 int c, i, nwhite, nother; 5 int ndigit[10]; 6 7 nwhite = nother 阅读全文
posted @ 2016-03-06 15:55 CODESYS资源大全 阅读(217) 评论(0) 推荐(0)