Advertisement
Josif_tepe

Untitled

Nov 15th, 2022
816
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.51 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5.     char c;
  6.     int broj = 0;
  7.     int zbir = 0;
  8.     while(scanf("%c", &c)) {
  9.         if(c == '!') {
  10.             break;
  11.         }
  12.        
  13.         if(c >= '0' && c <= '9') { // znakot e cifra
  14.             broj = (broj * 10) + (c - '0');
  15.         }
  16.         else {
  17.             zbir += broj;
  18.             broj = 0;
  19.         }
  20.        
  21.     }
  22.     zbir += broj;
  23.     printf("%d\n", zbir);
  24.     return 0;
  25.  
  26. }
  27. ///dsadas34D fsdmflk12dfskl fsdsfd41mewm20!
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement