コード例 #1
0
ファイル: Expression.cpp プロジェクト: hkg36/My_EXLIB
	double Get(const std::string & exp)
	{
		std::string exp2;
		for(auto i=exp.begin();i!=exp.end();i++)
		{
			if(*i==' ' || *i=='\r' || *i=='\n' || *i=='\t') continue;
			exp2+=*i;
		}
		return compvalue(exp2.c_str());
	}
コード例 #2
0
ファイル: in_to_post2.c プロジェクト: superqqgto/learngit
int main()
{
	trans();
	compvalue();
	return 0;
}