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