countdown.c
上传用户:bjtelijie
上传日期:2010-01-01
资源大小:87k
文件大小:1k
源码类别:

数学计算

开发平台:

Visual C++

  1. /* Countdown program. */
  2. # include <stdio.h>
  3. # include <stdlib.h>
  4. # include <ctype.h>
  5. # include <string.h>
  6. void main(int argc, char* argv[])
  7. {
  8. int disp, count;
  9. if(argc < 2)
  10. {
  11. printf("You must enter the length of the countn");
  12. printf("on the command line. Try againn");
  13. exit(1);    /* 非正常跳出程序 */
  14. }
  15. if(argc==3 && !strcmp(argv[2], "display"))
  16. disp = 1;
  17. else
  18. disp = 0;
  19. for(count = atoi(argv[1]); count; --count)
  20. if(disp)
  21. printf("%dn", count);
  22. putchar('a');    /* 将产生蜂鸣 */
  23. printf("Down");
  24. return;
  25. }