public static void Main()
Studente Studente1 = new Studente();
Studente Studente2 = new Studente();
Studente Studente3 = new Studente();
Console.WriteLine("Qual'è il nome dello studente ?");
Studente1.nome = Console.ReadLine();
Console.WriteLine("Qual'è il cognome dello studente ?");
Studente1.cognome = Console.ReadLine();
Console.WriteLine("Qual'è la data di nascita dello studente ?");
Studente1.datadinascita = Console.ReadLine();
Console.WriteLine("Qual'è l'età dello studente ?");
Studente1.eta = Console.ReadLine();
Console.WriteLine("Qual'è il sesso dello studente ?");
Studente1.sesso = Console.ReadLine();
Console.WriteLine("Quante sono le ore di assenza ?");
Studente1.assenze = Console.ReadLine();
public string datadinascita;
Console.WriteLine("Lo studente è bocciato");
Console.WriteLine("Lo studente può partecipare all'esame");