Witam, mam pytanie jak zrobić listę generyczna ostatnich 10 operacji kalkulatora ?
using System;
using System.Collections.Generic;
namespace xxxxx
{
class Program
{
static void Main(string[] args)
{
List<string> operacje = new List<string>();
Console.WriteLine("Podaj liczbe");
double x = Convert.ToDouble(Console.ReadLine());
while (true)
{
Console.WriteLine("Wybierz rodzaj operacji:");
string z = Console.ReadLine();
Console.WriteLine("Podaj liczbe");
double y = Convert.ToDouble(Console.ReadLine());
switch (z)
{
case "+":
Console.WriteLine("+");
x = (x + y);
Console.WriteLine("Wynik : " +x);
break;
case "-":
Console.WriteLine("-");
x = (x - y);
Console.WriteLine("Wynik : " +x);
break;
case "*":
Console.WriteLine("*");
x = (x * y);
Console.WriteLine("Wynik : " +x);
break;
case "/":
if (y == 0)
{
Console.WriteLine("Nie dziel przez 0");
}
else
{
Console.WriteLine("/");
x = (x / y);
Console.WriteLine("Wynik : " +x);
}
break;
case "Q":
case "q":
Console.WriteLine("Good Bye!");
System.Environment.Exit(1);
break;
}
}
}
}
}