Advertisement
Josif_tepe

Untitled

Jul 6th, 2023
772
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(int argc, const char * argv[]) {
  4.     int a, b;
  5.     scanf("%d%d", &a, &b);
  6.  
  7.     int i = a;
  8.     int proizvod = 1;
  9.  
  10.     while(i <= b) {
  11.         if(i % 2 == 0) {
  12.             proizvod *= i;
  13.         }
  14.         i++;
  15.     }
  16.     printf("%d ", proizvod);
  17.    
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement