TopCoder用のなんか
自分用。随時更新
数値を文字列化
#include <sstream> #include <string> using namespace std; string IntToString(int number) { stringstream ss; ss << number; return ss.str(); }
1文字を数値化
int CharToInt(char x) { return atoi(&x); }
自分用。随時更新
数値を文字列化
#include <sstream> #include <string> using namespace std; string IntToString(int number) { stringstream ss; ss << number; return ss.str(); }
1文字を数値化
int CharToInt(char x) { return atoi(&x); }