1-100 arası 3′ e ve 5’e tam bölünebilen sayıları listeleyen Console Örneği:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
static void Main(string[] args) { for (int i=1;i<=100;i++) { if (i % 3 == 0 && i%5==0) { Console.WriteLine(i); } } Console.ReadKey(); } } |
Add Comment