Advertisement
VEGASo

(С#) Lab #3 Ex. 1

Oct 15th, 2022 (edited)
551
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. using System;
  2.  
  3. namespace LearnRSUE
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             int Sum = 0;
  10.  
  11.             for (int i = 2; i <= 100; i += 2)
  12.             {
  13.                 Sum += i;
  14.             }
  15.  
  16.             Console.WriteLine(Sum);
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement