标签:
#include<stdio.h> #include<string.h> main() { char a[10]="help"; char b[10]="quit"; char c[10]; while(1){ printf("please enter the command: "); scanf("%s",c); if(strcmp(c,a)==0) printf("dir\ncd\nmd\nrd\ncls\ndate\ntime\nren\ncopy"); if(strcmp(c,b)==0) break; } }
总结:第一次做,很多不足,而且c语言忘记好多,要好好学习才行。
标签:
原文地址:http://www.cnblogs.com/leon-pang/p/4396877.html