jordanov

Мали и големи букви

Jan 10th, 2020
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.77 KB | None | 0 0
  1. // Мали и големи Букви (Датотеки)
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5.  
  6. void writeToFile() {
  7.     FILE *f = fopen("text.txt", "w");
  8.     char c;
  9.     while((c = getchar()) != '#') {
  10.         fputc(c, f);
  11.     }
  12.     fclose(f);
  13. }
  14.  
  15. int main()
  16. {
  17.     writeToFile();
  18.     FILE *dat;
  19.     char c;
  20.     dat = fopen("text.txt", "r");
  21.     if(dat == NULL)
  22.     {
  23.         printf("Datoteka ne moze da se otvori");
  24.         return 0;
  25.     }
  26.  
  27.     int golemi=0, mali=0;
  28.  
  29.     while((c = fgetc(dat)) != EOF)
  30.     {
  31.         if(isalpha(c))
  32.         {
  33.            golemi++;
  34.         }
  35.         else if(isalpha(c)==2)
  36.         {
  37.             mali++;
  38.         }
  39.     }
  40.     printf("%f\n%f", (float)mali/(mali+golemi), (float)golemi/(mali+golemi));
  41.     return 0;
  42. }
Add Comment
Please, Sign In to add comment