fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int n = 0;
  6. int i = 0;
  7. int s = 0;
  8.  
  9. printf("Please enter value for N\n");
  10. scanf("%d", &n);
  11.  
  12. s = 0;
  13. for (i = 1; i <= n; i += 1)
  14. {
  15. if (i % 2 == 0) {
  16. s = s + i;
  17. printf("Current value i=%d S=%d\n", i, s);
  18. }
  19. }
  20.  
  21. printf("Final result suma is S=%d", s);
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0.01s 5284KB
stdin
4
stdout
Please enter value for N
Current value i=2 S=2
Current value i=4 S=6
Final result suma is S=6