Advertisement
Josif_tepe

Untitled

Jan 8th, 2025
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.86 KB | None | 0 0
  1. #include <iostream>
  2. #include <ctype.h>
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7.     char niza[20];
  8.     int cnt = 0;
  9.     while(cin.getline(niza, 20)) {
  10.         if(niza[0] == '\0') {
  11.             break;
  12.         }
  13.         bool ok = true;
  14.         for(int i = 0; i < strlen(niza); i++) {
  15.             if(isalpha(niza[i])) {
  16.                 niza[i] = toupper(niza[i]);
  17.                
  18.             }
  19.             if(isalnum(niza[i])) {
  20.                 if(isalpha(niza[i])) {
  21.                     if(!(niza[i] >= 'A' && niza[i] <= 'F')) {
  22.                         ok = false;
  23.                     }
  24.                 }
  25.                
  26.             }
  27.             else {
  28.                 ok = false;
  29.             }
  30.         }
  31.         if(ok) {
  32.             cout << niza << endl;
  33.             cnt++;
  34.         }
  35.     }
  36.     cout << "Total: " << cnt << endl;
  37.     return 0;
  38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement