实验一 命令解释程序的编写
#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; } }
关于实验1,发现有很多c语言的语句已经忘记,对c语言语句已经不太熟悉,但经过实验1,又对c语言有了重新的认识,熟悉了大概的基本语句,可以很好地运用,对于这次实验,经过几节课下来才能简单地完成,经过这次实验也学到很多东西,为以后的学习打好了基础。