Sininerebane

Untitled

May 21st, 2023
1,160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | Software | 0 0
  1. namespace ForCycle
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             Console.OutputEncoding = Encoding.UTF8;
  8.             int initial = 5;
  9.             int step = 7;
  10.             int max = 96;
  11.  
  12.             for (int i = initial; i <= max; i += step)  
  13.             {
  14.                 Console.WriteLine(i);
  15.             }
  16.  
  17.             Console.ReadKey();
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment