文章目录
- vs2015新建项目
想知道vs2015新建项目只有debug和ralease这几个莫名其妙的文件吗?像下面这样,曾经我也想知道2333

说好的在源文件分支新建传说中的helloword.cpp呢?难道我的vs是假的

那么接下来点击左下角solution explorer再看上面。。。。

感觉自己像个智障
string strName
#include <iostream>
using namespace std;
int main()
{
string strName;
int nAge = 0;
cin >> nAge;
// 在屏幕输出“Hello World!”字符串
cout << "Hello World!" << endl;
cout << nAge << endl;
system("pause");
return 0;
}
我为什么不能对strName进行操作??

265

被折叠的 条评论
为什么被折叠?



