using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsApp1_cw1 { internal class Program { static void Main(string[] args) { //gwiazdki for (int i = 0; i < 3; i++) { for (int j = 0; j < 5; j++) { Console.Write("*"); } Console.WriteLine(); } Console.WriteLine(); Console.WriteLine(); //kreski for (int i = 0; i < 5; i++) { if (i%2 == 0) { Console.WriteLine(" | | "); } else { Console.WriteLine("--+--+--"); } } Console.WriteLine(); Console.WriteLine(); } } }