aboutmain.cpp
Upload User: gzy2011
Upload Date: 2021-02-09
Package Size: 20k
Code Size: 0k
Development Platform:

Visual C++

  1. //file aboutmain.cpp
  2. #include"iostream.h"
  3. #include"stdlib.h"
  4. void main(int argc,char *argv[])
  5. {
  6. if(argc!=2){
  7. cout<<"You forgot to type your namen");
  8. exit(1);
  9. }
  10. cout<<"该程序名为:"<<argv[0]<<endl;
  11.     cout<<"Hello "<<argv[1]<<endl;
  12. }