Compare commits

...

2 Commits

Author SHA1 Message Date
PatPrz
2c77db75ed FizzBuzz 2024-10-14 11:20:23 +02:00
262635b041 add tg 2024-10-14 09:16:52 +00:00
2 changed files with 3 additions and 1 deletions

View File

@ -1,2 +1,3 @@
cos cos
sin sin
tg

View File

@ -4,6 +4,7 @@ using System.Text.Json;
using System.Xml.Linq; using System.Xml.Linq;
Console.WriteLine("zadanie 1.3."); Console.WriteLine("zadanie 1.3.");
//BuzzFizz
for (int i = 1; i <= 100; i++) for (int i = 1; i <= 100; i++)
{ {
if(i%3==0 && i % 5 == 0) { Console.WriteLine("FizzBuzz"); } if(i%3==0 && i % 5 == 0) { Console.WriteLine("FizzBuzz"); }