- 118
- 0
- 约 105页
- 2016-12-19 发布于贵州
- 举报
C++程序编程实例大全 #includeiostream
int main()
{
std::couthello world!;
} #include iostream
using namespace std;
void main()
{
int *p;
p=new int;
*p=5;
/*p=new int(5);*/
cout*p;
delete p;
} #include iostream
using namespace std;
void main()
{ char name[10];
coutplease input your name:;
cinname;
coutthe name is nameendl;
} #include iostream
using namespace std;
void main()
{ char name[10];
int age;
coutplease input your name:;
cinname;
couthow old are you:;
cinage;
coutthe name is nameendl;
coutthe ag
原创力文档

文档评论(0)