Advertisement
aclemence

PE_1

Apr 27th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2.  
  3. namespace PE_1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int sum = 0;
  10.  
  11.             for (int i = 0; i < 1000; i++)
  12.             {
  13.                 if (i % 3 == 0 || i % 5 == 0) sum += i;
  14.             }
  15.  
  16.             Console.WriteLine(sum);
  17.             Console.ReadKey();
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement