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

数学计算

开发平台:

Visual C++

  1. # include <stdio.h>
  2. # include <ctype.h>
  3. void main()
  4. {
  5. char ch;
  6. printf("Please enter some text(input a point to quit).n");
  7. do{
  8. ch = getchar();
  9. if(islower(ch))
  10. ch = toupper(ch);
  11. else
  12. ch = tolower(ch);
  13. putchar(ch);
  14. } while(ch != '.');
  15. }