ex21.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream.h>
  2. void main( )
  3. {
  4. cout<<"Hello,World!n";
  5. cout<<"this is the first C++ program."<<endl;
  6. int x=5;
  7. cout<<x<<endl;
  8. }