Advertisement
greannmhar

Строки 10

Mar 12th, 2024
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.31 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5.     FILE *inputFile, *outputFile;
  6.     char inputFileName[100], outputFileName[100];
  7.     char brackets[100];
  8.  
  9.     printf("Введите имя входного файла: ");
  10.     scanf("%s", inputFileName);
  11.  
  12.     printf("Введите имя выходного файла: ");
  13.     scanf("%s", outputFileName);
  14.  
  15.     printf("Введите скобки для удаления: ");
  16.     scanf("%s", brackets);
  17.  
  18.     inputFile = fopen(inputFileName, "r");
  19.     if (inputFile == NULL) {
  20.         printf("Ошибка открытия входного файла.\n");
  21.         return 1;
  22.     }
  23.  
  24.     outputFile = fopen(outputFileName, "w");
  25.     if (outputFile == NULL) {
  26.         printf("Ошибка открытия выходного файла.\n");
  27.         return 1;
  28.     }
  29.  
  30.     char c;
  31.     int inBracket = 0;
  32.  
  33.     while ((c = fgetc(inputFile)) != EOF) {
  34.         if (c == brackets[0]) {
  35.             inBracket = 1;
  36.             while ((c = fgetc(inputFile)) != brackets[1] && c != EOF) {}
  37.             inBracket = 0;
  38.         }
  39.         if (!inBracket) {
  40.             fputc(c, outputFile);
  41.         }
  42.     }
  43.  
  44.     fclose(inputFile);
  45.     fclose(outputFile);
  46.  
  47.     printf("Текст между скобками удален успешно.\n");
  48.  
  49.     return 0;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement