Compare commits

..

No commits in common. "2c77db75ed326c76544a7c4ddb0aeab28eab3716" and "1fda99e4b3fa2fedce2c3fb3bd9bd6f0f591a162" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View File

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

View File

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