C程序设计编程实例大全.docxVIP

  • 5
  • 0
  • 约4.82万字
  • 约 83页
  • 2020-11-22 发布于山东
  • 举报
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 age is ageendl; } #include iostream using namespace std; void main() { struct student { int no; float

您可能关注的文档

文档评论(0)

1亿VIP精品文档

相关文档