Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace ForCycle
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.OutputEncoding = Encoding.UTF8;
- int initial = 5;
- int step = 7;
- int max = 96;
- for (int i = initial; i <= max; i += step)
- {
- Console.WriteLine(i);
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment