public static void Main()
Console.WriteLine("Enter x");
x=Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Enter y");
y=Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Enter s");
s=Convert.ToInt32(Console.ReadLine());
case 1:z=Math.Pow(x,4)+y;
Console.WriteLine("z="+z);
case 2:z=Math.Pow(x,4)-y;
Console.WriteLine("z="+z);
case 3:z=Math.Pow(x,4)*y;
Console.WriteLine("z="+z);
case 4:z=Math.Pow(x,4)/y;
Console.WriteLine("z="+z);
default: Console.WriteLine("error of enter s");