摘要:
the command of vim to save as the file :w new_file_name 阅读全文
摘要:
因为本人的某些小强迫症,写了一个格式化并根据js函数名排序的c++程序,此作mark#include #include #include #include using namespace std;int main() { freopen("in.js", "r", stdin); freopen("out.js", "w", stdout); string str, name, content; map mp; char ch; while((ch = getchar()) != EOF) { str += ch; 阅读全文