我已经阅读了三种方法,可以从各种来源以c ++的形式将内容打印到控制台.
using namespace std;
cout
std::cout
std::endl;
printf
哪个是首选,为什么?
c++
c++ ×1