本帖最后由 张恒宇 于 2015-5-10 00:31 编辑
#include <iostream>
#include <stdio.h>
int main(int argc, const char * argv[])
{
std::string a[3]={"welocme ","to ","heima "};
for (int i=0;i<3;i++)
{
std::cout<< a[i];
}
return 0;
}
这里的[i]是中文状态自己改成英文状态不知道为什么应为状态不能显示。。。我也是醉了
结果welocme to heima Program ended with exit code: 0
|