void test(unsigned int hah){
cout << hah << endl;
cout << 02222 << endl;
}
vector<string> wordBreak(string s, vector<string>& wordDict) {
test(0222);
}
这个代码中,我们使用了0222传入test函数中,之后cout一下, 真实的输出为:1170 1170
这是因为在一个数字前面添加一个0, 运行的时候会被识别成8进制的数字,所以会输出1170