#include<stdio.h>
#include<string.h>
main()
{
char cmd[20][20]={"dir","cd","md","rd","cls","date","time","ren","copy","help","quit"};
char str[20];
while(1)
{
printf("請輸入顯示符:");
gets(str);//從鍵盤輸入,並顯示提示信息
if(strcmp(str,cmd[0])==0)
{
printf("dir表示無參數:查看當前所在目錄的文件和文件夾\n");
}
else if(strcmp(str,cmd[1])==0)
{
printf("cd目錄名:進入特定的目錄\n");
}
else if(strcmp(str,cmd[2])==0)
{
printf("md目錄名:建立特定的文件夾。dos下面虛習慣叫目錄,win下面習慣叫文件夾\n");
}
else if(strcmp(str,cmd[3])==0)
{
printf("rd目錄名:刪除特定的文件夾。\n");
}
else if(strcmp(str,cmd[4])==0)
{
printf("cls目錄名:表示清屏功能\n");
}
else if(strcmp(str,cmd[5])==0)
{
printf("date設置日期命令,功能是設置日期\n");
}
else if(strcmp(str,cmd[6])==0)
{
printf("time系統時鐘設置命令,功能:設置或顯示系統時期。\n");
}
else if(strcmp(str,cmd[7])==0)
{
printf("ren表示文件改個名字\n");
}
else if(strcmp(str,cmd[8])==0)
{
printf("copy表示復制命令,他的功能的復制信息\n");
}
else if(strcmp(str,cmd[9])==0)
{
printf("help表示無參數:查看當前所在目錄的文件和文件夾\n");
}
else if(strcmp(str,cmd[10])==0)
{
printf("quit表示退出");
}
}
}
總結:剛開始看題目的時候不太理解題目意思,在朋友的幫助下漸漸地理解了題目。不過由於太久沒有寫過代碼,也不知道怎麼下手,只好在網上參考一下別人是怎麼寫的,然後寫著寫著就慢慢的想起以前學過的知識,慢慢地熟悉,雖然大多數不是自己寫,不過還是收獲了不少。