using System; using System.Collections.Generic; using System.Text; namespace Traktoriprojekt { class Traktoriproov2 { public static void Main(string[] arg) { Traktor[] traktorid = new Traktor[3]; traktorid[0] = new Traktor(40, 1.5, 30); traktorid[1]=new Traktor(700, 40, 90); for (int i = 0; i < traktorid.Length; i++) { if (traktorid[i] != null) { Console.WriteLine("Kohal "+i+" "+traktorid[i]); if (traktorid[i].kasPysibP6llul(1)) { Console.WriteLine("Püsib"); } } else { Console.WriteLine("Platsil koht nr " + i + " tühi"); } } } } }