using System;
public class Program
{
public static void Main()
byte Nota=9;
string Estado="";
if (Nota<4)
Estado = "Desaprobado";
}
else if (Nota < 7)
Estado = "Regularizado";
else
Estado = "Promocionado";
Console.WriteLine("El estado es... " + Estado);