Advertisement
DaniPasteBin

Untitled

May 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Labs20180517
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.  
  10.  
  11.             //07.Divisible by 3
  12.  
  13.             for (int i =3; i < 100; i+=3)
  14.             {
  15.                
  16.                 Console.WriteLine(i);
  17.             }
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement