#include #include void main(int argc,char **argv)//参数写错了,是2个*{ while(argc-->1) printf("%s\n",*++argv); system("pause");}