Advertisement
Josif_tepe

Untitled

Nov 23rd, 2022
841
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.08 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5.     char c;
  6.     int zbir = 0;
  7.     while(scanf("%c", &c)) {
  8.         if(c == '.') {
  9.             break;
  10.         }
  11.         if(c >= '0' && c <= '9') {
  12.             zbir += (c - '0');
  13.         }
  14.         else if(c == 'a' || c == 'A') {
  15.             zbir += 10;
  16.         }
  17.         else if(c == 'b' || c == 'B') {
  18.             zbir += 11;
  19.         }
  20.         else if(c == 'c' || c == 'C') {
  21.             zbir += 12;
  22.         }
  23.         else if(c == 'd' || c == 'D') {
  24.             zbir += 13;
  25.         }
  26.         else if(c == 'e' || c == 'E') {
  27.             zbir += 14;
  28.         }
  29.         else if(c == 'f' || c =='F') {
  30.             zbir += 15;
  31.         }
  32.     }
  33.     if(zbir % 16 == 0) {
  34.         int posledna_cifra = zbir % 10;
  35.         int pretposledna_cifra = (zbir / 10) % 10;
  36.         if(pretposledna_cifra == 1 && posledna_cifra == 6) {
  37.             printf("Poln pogodok\n");
  38.         }
  39.         else {
  40.             printf("Pogodok\n");
  41.         }
  42.     }
  43.     else {
  44.         printf("%d\n", zbir);
  45.     }
  46.     return 0;
  47.  
  48. }
  49.  
  50. /*
  51.  **/
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement