注册 登录
编程论坛 C++教室

这跟标准c++有什么区别?求分析。

滑稽 发布于 2016-10-28 22:45, 1420 次点击
#include<iostream>
#include<string>
using namespace std;
int main()
{
    string greeting="hello world";
    cout<<greeting<<endl;
    cout<<“滑稽”\n;
    return 0
}
1 回复
#2
炎天2016-10-28 22:57
没看懂你得问题,
不过修改了你得代码
#include<iostream>
 #include<string>
 using namespace std;
 int main()
 {
     string greeting="hello world";
     cout<<greeting<<endl;
     cout<<"滑稽"<<'\n';
     return 0;
 }
1