Anonim_999

4

Dec 22nd, 2022
1,065
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp27
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int value = 1;
  10.             int sum = 0;
  11.  
  12.             for (int i = 1; i <= 10; i++)
  13.             {
  14.                 sum += value;
  15.                 Console.WriteLine($"{value} - {sum}");
  16.                 value += 2;
  17.             }
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment