shite
This commit is contained in:
@@ -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()}");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user