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