Advertisement
Rodunskiy

Untitled

May 6th, 2024
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CSLight
  4. {
  5.     public class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int startValue = 5;
  10.             int step = 7;
  11.             int maxNumber = 103;
  12.  
  13.             for (int i = startValue; i <= maxNumber; i+=step)
  14.             {
  15.                 Console.WriteLine(i);
  16.                 Console.ReadKey();
  17.             }
  18.         }
  19.     }
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement