本人2021年2月开始学c++,当时第一个学会的就是“万能架构”:
#include <iostream> using namespace std; int main() { return 0; }
但是!听说这几年有些可以省略,有哪些可以省略?
例如:return 0是不是可以不用了