This commit is contained in:
unknown
2026-09-08 15:27:34 -05:00
parent 4a276e9483
commit d261a49213
35 changed files with 189 additions and 19 deletions
+14
View File
@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Core;
namespace MathApp
{
@@ -9,6 +10,19 @@ namespace MathApp
{
static void Main(string[] args)
{
Operations ops = new Operations();
Console.WriteLine("[MathLogger] System started!");
while (true)
{
Console.WriteLine("[Input] Enter an equation, using the QuikMath format: ");
string ipt = Console.ReadLine();
if (ipt != "")
{
float ot;
ot = ops.EquParserLoop(ipt);
Console.WriteLine($"[ValueOutBuffer] Result: {ot.ToString()}");
}
}
}
}
}