直接計算字元串算式方法: ...
直接計算字元串算式方法:
1 string str = Console.ReadLine(); //可輸入帶符號的計算式如:100-3+45*8/9+(18/3)... 2 string resultStr = new DataTable().Compute(str, "").ToString(); //計算上面的算式得出結果並轉為string型數據 3 Console.WriteLine(resultStr); 4 Console.ReadKey();
直接計算字元串算式方法: ...
直接計算字元串算式方法:
1 string str = Console.ReadLine(); //可輸入帶符號的計算式如:100-3+45*8/9+(18/3)... 2 string resultStr = new DataTable().Compute(str, "").ToString(); //計算上面的算式得出結果並轉為string型數據 3 Console.WriteLine(resultStr); 4 Console.ReadKey();