Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static void Main(string[] args)
- {
- int maxNumber = 96;
- int minNumber = 5;
- int step = 7;
- for(int i = minNum; i <= maxNum; i += step)
- {
- Console.WriteLine(i);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement