多行书写的字符串字面值

#include<iostream>
using namespace std;
int main()
{
    cout<<"Hello Word!"
    "Best Coder!"<<endl;
    return 0;
}

你可能感兴趣的:(多行书写的字符串字面值)