fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int n=0; int i=0; int s=0;
  8. Console.WriteLine("Please enter value for N\n");
  9. n=int.Parse(Console.ReadLine());
  10. s=0;
  11. for(i=1;i<=n;i+=1)
  12. {
  13. if(i % 2 == 0)
  14. {
  15. s=s+1;
  16. Console.WriteLine("Current value i="+i+"S="+s);
  17. }
  18. }
  19. Console.WriteLine("Final result suma is S="+s);
  20. }
  21. }
Success #stdin #stdout 0.07s 30172KB
stdin
10
stdout
Please enter value for N

Current value i=2S=1
Current value i=4S=2
Current value i=6S=3
Current value i=8S=4
Current value i=10S=5
Final result suma is S=5