x1=imread('1','bmp');
x2=imread('23.jpg');
x3=imread('24.jpg');
x4=imread('25.jpg');
x5=imread('26.jpg');
%x6=imread('6','bmp');
input('您有三次机会,请好好把握(按Enter开始)');
%num=1
%while num<4
menu('这里是婚介所,请输入您的年龄','16~25','25~35','35~45','45~65','65~100');
choice2=menu('请输入您的性别','男','女','不男不女');
if choice2==1
disp('you are not feet for it!');
image(x4);
elseif choice2==2
choice3=menu('请输入你的择偶标准','美女','丑女','巫女');
if choice3==1
imshow(x1);
elseif choice3==2
image(x2);
elseif choice3==3
image(x3);
end
elseif choice2==3
image(x5);
disp('you are not feet for it!');
end
disp('请再运行一次,谢谢合作...^_^^_^哈.....');
%end |