⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uplow.c

📁 c版本的
💻 C
字号:
                                        /* Chapter 13 - Program 1 */
#include "STDIO.H"
#include "ctype.h"      /* Note - your compiler may not need this */

main()
{
FILE *fp;
char line[80], filename[24];
char *c;

   printf("Enter filename -> ");
   scanf("%s",filename);
   fp = fopen(filename,"r");

   do {
      c = fgets(line,80,fp);   /* get a line of text */
      if (c != NULL) {
         mix_up_the_chars(line);
      }
   } while (c != NULL);

   fclose(fp);
}

mix_up_the_chars(line)   /* this function turns all upper case
                            characters into lower case, and all
                            lower case to upper case. It ignores
                            all other characters.               */
char line[];
{
int index;

   for (index = 0;line[index] != 0;index++) {
      if (isupper(line[index]))     /* 1 if upper case */
         line[index] = tolower(line[index]);
      else {
         if (islower(line[index]))  /* 1 if lower case */
            line[index] = toupper(line[index]);
      }
   }
   printf("%s",line);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -