Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace CSLight
- {
- public class Program
- {
- static void Main(string[] args)
- {
- int startValue = 5;
- int step = 7;
- int maxNumber = 103;
- for (int i = startValue; i <= maxNumber; i+=step)
- {
- Console.WriteLine(startValue);
- startValue += step;
- Console.ReadKey();
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement