Advertisement
Josif_tepe

Untitled

May 27th, 2024
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.14 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <ctype.h>
  4.  
  5. int main(int argc, char * argv[]) {
  6.     if(argc < 2) {
  7.         printf("Vlezna datoteka se vnesuva preku komandna linija\n");
  8.         return 0;
  9.     }
  10.     FILE * in = fopen(argv[1], "r");
  11.     if(in == NULL) {
  12.         printf("Vnesovte ne validna vlezna datoteka\n");
  13.         return 0;
  14.     }
  15.     char niza[2000];
  16.     char c;
  17.     int j = 0;
  18.     while((c = fgetc(in)) != EOF) {
  19.         if(isalpha(c)) {
  20.             niza[j] = c;
  21.             j++;
  22.         }
  23.         else {
  24.             int golemi_bukvi = 0, mali_bukvi = 0;
  25.             for(int i = 0; i < j; i++) {
  26.                 if(isalpha(niza[i])) {
  27.                     if(isupper(niza[i])) {
  28.                         golemi_bukvi++;
  29.                     }
  30.                     else {
  31.                         mali_bukvi++;
  32.                     }
  33.                 }
  34.             }
  35.             if(golemi_bukvi >= 2 && mali_bukvi >= 1) {
  36.                 for(int i = 0; i < j; i++) {
  37.                     printf("%c", niza[i]);
  38.                 }
  39.                 printf("\n");
  40.             }
  41.             j = 0;
  42.         }
  43.     }
  44. }
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement