oggetti_1/Program.cs
La Programmatrice Verde be7f5aebc7 Fine
2025-04-04 10:01:25 +02:00

13 lines
276 B
C#

namespace oggetti_1;
class Program
{
static void Main(string[] args) {
Auto auto = new Auto(3600, "DV643RH", 2547.3, 8472, "Ford");
Auto auto2 = new Auto(2400, "AB482GT", 2345.542, 4325, "FIAT");
auto.Stampa();
auto2.Stampa();
}
}