case后边是命令,自己改改吧。
#!/bin/bash
clear;
echo "
Number Name For Linux Menu
1 exit leave menu or return
2 menu goto another local menu
3 vi deit a file
4 mail read a mail
5 send send mail to someone
6 cal see your calendar
7 who see who is on the system
8 ls list the files in this directory
9 cat display a file on the screen
"
while echo "Please enter a number or a name for the action you wish:"
read n
do
case $n in
1)exit 0;;
2);;
3)vi;;
4)mail;;
5)send;;
6)cal;;
7)who;;
8)ls;;
9)cat;;
)clear;echo "
Number Name For Linux Menu
1 exit leave menu or return
2 menu goto another local menu
3 vi deit a file
4 mail read a mail
5 send send mail to someone
6 cal see your calendar
7 who see who is on the system
8 ls list the files in this directory
9 cat display a file on the screen
";;
esac
done
#include <iostreamh>
#include <stdlibh>
void main()
{
char choice,c;
while(1)
{
cout << "Menu: A(dd) D(elete) S(ort) Q(uit), Select one:";
cin >> c;
choice = toupper(c);
if (choice == 'A')
{
cout << "数据已经增加 " << endl;
continue;
}
else if (choice == 'D')
{
cout << "数据已经删除 " << endl;
continue;
}
else if (choice == 'S')
{
cout << "数据已经排序 " << endl;
continue;
}
else if (choice == 'Q')
break;
}
}
亲 这个可以通过vs的window窗体直接一个菜单控件 然后再编辑你要的功能 编辑好双击进入编程界面 然后再写退出的代码:thisclose();用另外一个方法 直接结束进程,现在没有工具 所以那个方法我不会打!你自己可以研究下vs2008
解决方法一:
前提:需要一个键盘
步骤:
1、直接按下键盘上的Menu键。
解决方法二:
前提:需要Root之后的文件浏览器
步骤:
1、在文件管理器中打开 /System 文件夹;
2、复制 buildprop 文件到 SD Card 文件夹,并将原始的 buildprop 重命名备份;
3、用文本编辑器打开 buildprop 文件,找到 qemuhwmainkeys ,将 1 改为 0。(1是隐藏,0是显示);
qemuhwmainkeys = 0
4、将修改后的文件放到 /System 文件夹,替换原文件,并确认文件权限为 644;
5、重启模拟器,即可看到底部出现的导航栏(没有按钮显示,但是我进入到自己写的含有Menu的程序后,底部出现菜单按钮)。如下图:
网易mumu模拟器配置文件和修改adb port位置
网易mumu模拟器配置文件在安装目录下 emulator\nemu\vms\myandrovm_vbox86下的myandrovm_vbox86nemu文件中 修改port位置
[转]tftp在put上传的时候显示File not found的解决办法
[转]tftp在put上传的时候显示File not found的解决办法 >
void menu()在c语言中的意思是:
main是每一个程序都必须具有的,它是由系统定义的。
其后面的一对()说明main是一个称为函数的程序块。每一个C语言程序都是从函数main开始的,也结束于main函数最后一个花括号。
main()是应用程序的主函数,menu()是普通函数
以上就是关于编写一个menu 的shell脚本程序 要求有清屏功能,能正确地执行各项命令并显示。全部的内容,包括:编写一个menu 的shell脚本程序 要求有清屏功能,能正确地执行各项命令并显示。、实现一个简单的菜单程序,运行时显示“Menu:A(dd) D(elete) S(ort) Q(uit),Select one:"提示用户输入、C#里怎么实现单击menu子菜单直接执行关闭程序的代码!有没有办法的等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)