#include <iostream> int main() { std::cout << "25"+1; return 0; }
我输出"5".当我使用"5"+ 1时,输出为空;"456"+ 1输出为"56".混淆了幕后的情况.
c++
c++ ×1