Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. namespace _02.Numbers_1_to_N_with_Step_3
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. int n = int.Parse(Console.ReadLine());
  11.  
  12. for (int i = 1 ; i <= n; i+=3)
  13. {
  14. Console.WriteLine(i);
  15. }
  16.  
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement