fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. class Main {
  6. public static void main(String[] args) {
  7. var n = 0; var i = 0; var s = 0;
  8. System.out.println("Please enter value for N");
  9. Scanner in = new Scanner(System.in);
  10. n = in.nextInt();
  11. in.close();
  12. s = 0;
  13. for (i = 1; i <= n; i += 1)
  14. {
  15. if (i % 2 == 0)
  16. {
  17. s = s + i;
  18. System.out.println
  19. ("Current value i=" + i + " S=" + s);
  20. }
  21. }
  22. System.out.println("Final result sum is S=" + s);
  23. }
  24. }
Success #stdin #stdout 0.25s 60860KB
stdin
10
stdout
Please enter value for N
Current value i=2 S=2
Current value i=4 S=6
Current value i=6 S=12
Current value i=8 S=20
Current value i=10 S=30
Final result sum is S=30