cout<<✀尀n✀和cout<<"尀n"有什么区别啊

2024-11-21 02:39:15
推荐回答(3个)
回答1:

#include
int main()
{
cout<<"1"<<'\n'<<"2"< cout<<"3\n4"<}

你运行上面那个程序可以帮助理解O(∩_∩)O~

cout<<'\n'和cout<<"\n" 两个都可以换行

但c++里 一般是用cout<

回答2:

不能用\n c++中的换行是 endl;
cout<<"hello"<

回答3:

1