#include <iostream>
int main()
{
std::cout <<
"this is the beginning of a very long message\n"
"that apans several lines of code.\n"
"This format allows a program to build long\n"
"string constrants without going past the\n"
"program editor'srightmargin.\n";
return 0;
system("pause");
}
是这样的吗