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