[工学]c程序设计第六章课件
本文档由 qianqianzhi258 分享于2012-10-09 08:05
[工学]c程序设计第六章课件c语言程序设计循环控制语句#include <stdio.h> int main() /* count digits, white space, others */ { int c, i, nwhite, nother, ndigit[10]; nwhite = nother = 0; for (i = 0; i < 10; i++) ndigit[i] = 0; while ((c = getchar()) != eof) { switch (c) { case ´0´: case ´1´: case ´2&acut..
分享:
君,已阅读到文档的结尾了呢~~