first commit
This commit is contained in:
18
third_party/tinyexpr/tinyexpr_test.cpp
vendored
Normal file
18
third_party/tinyexpr/tinyexpr_test.cpp
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
#include "tinyexpr.h"
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
// change expression to whatever you like
|
||||
std::string input = "(3 + 5) * 5 + 4^2";
|
||||
do
|
||||
{
|
||||
// no except check
|
||||
auto result = te_interp(input.c_str(), 0);
|
||||
std::cout << input << " = " << result << std::endl;
|
||||
std::cout << "please input math expression:" << std::endl;
|
||||
std::getline(std::cin, input);
|
||||
} while (input != "quit");
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user