码迷,mamicode.com
首页 > 其他好文 > 详细

实验一 认识DOS

时间:2015-09-29 20:28:28      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

#include <stdio.h>
#include <string.h>
void main()
{
char ord[20][20]={"mem","arp","attrib","dir","set","pause","help","call","for","echo","QUIT"};
char str[20];
while(1)
{
printf("Please enter your order:");
gets(str);
if(strcmp(str,ord[0])==0)
printf("mem:查看CPU使用情况.\n");
else if(strcmp(str,ord[1])==0)
printf("arp:查看和处理ARP缓存.\n");
else if(strcmp(str,ord[2])==0)
printf("attrib:文件/目录名,查看某文件/目录的属性.\n");
else if(strcmp(str,ord[3])==0)
printf("dir:查看文件,参数.\n");
else if(strcmp(str,ord[4])==0)
printf("set:显示当前所有的环境名称.\n");
else if(strcmp(str,ord[5])==0)
printf("pause:暂停批处理程序,并显示‘请按任意键继续’.\n");
else if(strcmp(str,ord[6])==0)
{
printf("mem:查看CPU使用情况.\n");
printf("arp:查看和处理ARP缓存.\n");
printf("attrib:文件/目录名,查看某文件/目录的属性.\n");
printf("dir:查看文件,参数.\n");
printf("set:显示当前所有的环境名称.\n");
printf("pause:暂停批处理程序,并显示请按任意键继续.\n");
printf("call:路径、批处理文件名.\n");
printf("for:对一组文件中的每一个文件执行某个特定命令.\n");
printf("echo:信息,在屏幕上显示出信息.\n");
}

else if(strcmp(str,ord[7])==0)
printf("call:路径、批处理文件名.\n");
else if(strcmp(str,ord[8])==0)
printf("for:对一组文件中的每一个文件执行某个特定命令.\n");
else if(strcmp(str,ord[9])==0)
printf("echo:信息,在屏幕上显示出信息.\n");
else if(strcmp(str,ord[10])==0)
return;
else printf("Wrong!Enter again:\n");
}
}

实验一 认识DOS

标签:

原文地址:http://www.cnblogs.com/chyl/p/4847067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!