西餐菜譜設計
㈠ 西餐完整菜單怎麼設計懂這方面的快幫幫我吧,這是我的期末作業!
你要不要我給你拍一下,我打工店裡的菜單,正好是西餐店
有一張三面正反的主菜
一張正反的飲料和甜點菜單
㈡ 如何設計西餐宴會的菜單
其實最重要的是要讓你的客人在菜單上看出你的風格
還要讓他看出你很用心去完成這份工作
我想這樣就行了
㈢ 我想知道我設計一個圖片菜單 也就是在微信上賣吃的東西的菜單 自己做 該怎麼做,有沒有什麼軟體 還要
那些都是用軟體手工做的,沒有一次性可以做好的,
㈣ C語言西文下拉菜單的設計
我做了一個,可是你一分也不給我,我很郁悶啦.
#include"stdio.h"
#include"stdlib.h"
#include"dos.h"
#include"conio.h"
#include"bios.h"
#define DOWN 0x5000
#define UP 0x4800
#define Esc 0x011b
#define ENTER 0x1c0d
#define Backspace 0xe08
#define ALT_B 12288 /*組合鍵alt+b*/
int key;
int textx,texty;
char save[4096];
char c[4096];
struct menustruct
{
char name[40];
char str[11][20];
int n;
}m1[1];
int i,j;
void menu()
{
system("cls");
textbackground(BLUE);
window(1,1,25,80);
clrscr();
textx=3;
texty=2;
gotoxy(1,2);
printf("%c",218);
for(i=0;i<78;i++)
printf("%c",196);
printf("%c",191);
for(i=3;i<=23;i++)
{
gotoxy(1,i);
printf("%c",179);
gotoxy(80,i);
printf("%c",179);
}
printf("%c",192);
for(i=0;i<78;i++)
printf("%c",196);
printf("%c",217);
gotoxy(1,1);
textcolor(7);
for(i=0;i<80;i++)
cprintf("%c",219);
selectitem();
drawselectitem();
gettext(2,3,78,23,c);
}
selectitem()
{
strcpy(m1[0].name,"*************menu*************");
strcpy(m1[0].str[0]," intput ");
strcpy(m1[0].str[1]," consult ");
strcpy(m1[0].str[2]," output ");
strcpy(m1[0].str[3]," modify ");
strcpy(m1[0].str[4]," delete ");
strcpy(m1[0].str[5]," recover ");
strcpy(m1[0].str[6]," add ");
strcpy(m1[0].str[7]," save ");
strcpy(m1[0].str[8]," open ");
strcpy(m1[0].str[9]," tong ji ");
strcpy(m1[0].str[10]," exit ");
m1[0].n=11;
}
drawselectitem()
{
for(i=0;i<3;i++)
RedText(i,1,m1[i].name);
}
RedText(int x,int y,char *z)
{
textbackground(7);
gotoxy(3+x*20,y);
for(j=0;z[j];j++)
{
if(j==0)
textcolor(RED);
else
textcolor(BLACK);
cprintf("%c",z[j]);
}
}
BlackText(int x,int y,char *z)
{
textbackground(0);
textcolor(15);
gotoxy(3+20*x,y);
cputs(z);
}
Run()
{
while(1)
{
gotoxy(textx,texty);
key=bioskey(0);
switch(key)
{
case ALT_B:
case Esc:DrawM1(0);break;
case UP:
{
if(textx==3)
textx=23;
textx--;
gotoxy(texty,textx);
}break;
case DOWN:
{
if(textx==23)
textx=3;
textx++;
gotoxy(texty,textx);
}break;
case Backspace:
{
if(texty==2&&textx==3)
continue;
else
{
if(texty!=2)texty--;
else
if(texty==2)
{
texty=78;
textx--;
}
gotoxy(texty,textx);
printf(" ");
gotoxy(texty,textx);
}
}break;
case ENTER:
{
if(textx==23)
continue;
textx++;
texty=2;
gotoxy(texty,textx);
}break;
default:
{
if(texty==79&&textx==23)
continue;
else
if(texty==79&&textx!=23)
{
textx++;
texty=2;
}
gotoxy(texty,textx);
printf("%c",key);
if(texty==79)
continue;
else
texty++;
}
}
}
}
DrawFrame(int l,int u,int r,int d,int tcolor,int bcolor)
{
textbackground(bcolor);
textcolor(bcolor);
for(i=1;i<=r;i++)
{
for(j=u;j<=d;j++)
{
gotoxy(i,j);
printf("%c",219);
}
}
textcolor(tcolor);
for(i=u+1;i<d;i++)
{
gotoxy(1,i);
cprintf("%c",179);
gotoxy(r,i);
cprintf("%c",179);
}
for(i=l+1;i<r;i++)
{
gotoxy(i,u);
cprintf("%c",196);
gotoxy(i,d);
cprintf("%c",196);
}
gotoxy(l,u);
cprintf("%c",218);
gotoxy(r,u);
cprintf("%c",191);
gotoxy(l,d);
cprintf("%c",192);
gotoxy(r,d);
cprintf("%c",217);
}
DrawM1(int n)
{
gettext(1,1,80,25,save);
BlackText(n,1,m1[n].name);
DrawFrame(3+20*n-1,2,3+20*n+19,3+m1[n].n,0,7);
for(i=3;i<3+m1[n].n;i++)
{
if(i==3)
BlackText(n,i,m1[n].str[i-3]);
else
RedText(n,i,m1[n].str[i-3]);
}
gotoxy(79,1);
MoveM1(n,3);
}
MoveM1(int n,int x)
{
int flag=1;
while(flag)
{
gotoxy(79,1);
key=bioskey(0);
gotoxy(79,1);
switch(key)
{
case Esc:
puttext(1,1,80,25,save);
flag=0;
break;
case UP:
RedText(n,x,m1[n].str[x-3]);
if(x==3)
x=3+m1[n].n-1;
else
x--;
BlackText(n,x,m1[n].str[x-3]);
flag=1;
break;
case DOWN:
RedText(n,x,m1[n].str[x-3]);
if(x==(3+m1[n].n-1))
x=3;
else
x++;
BlackText(n,x,m1[n].str[x-3]);
flag=1;
break;
case ENTER:
puttext(1,1,80,25,save);
Enter(n);
flag=0;
break;
}
gotoxy(79,1);
}
}
Enter(int m)
{
switch(m)
{
case 0:printf(" student input");break;
case 1:printf(" student consult ");break;
case 2:printf(" student output ");break;
case 3:printf(" student modify ");break;
case 4:printf(" student delete ");break;
case 5:printf(" student recover");break;
case 6:printf(" student add");break;
case 7:printf(" student save ");break;
case 8:printf(" student open ");break;
case 9:printf(" student tong ji");break;
case 10:printf(" student exit");exit(0);
}
}
main()
{
menu();
Run();
}
㈤ c語言題 西拉下拉菜單的設計 主要功能: 完成一個類似tp集成系統菜單的西文下拉菜單的設計
#include#include#;intgame_rand()//產生隨機數{intstime;longltime;ltime=time(NULL);stime=(unsignedint)ltime;srand(stime);return(rand());}intmain(){mytpchoice;mytpnum1=0;mytpnum2=0;longresult=0;mytpi;longtest=0;printf("SYSTEM:Welcometocounttheprogram!\n");while(1){//不出錯,不選退出則無限循環,也可以設置答題次數後退出if(num1!=0)//非第一次進系統列印再來一次{printf("SYSTEM:Makepersistentefforts,onceagain!\n");}do{//主菜單choice=6;//避免字母弊端後,防止自動選擇上次一的操作記錄printf("SYSTEM:Pleaseenteryourchoice:\n");printf("\t1.addition\n");printf("\t2.subtraction\n");printf("\t3.multiplication\n");printf("\t4.division\n");printf("\t5.quit\n");scanf("%d",&choice);getchar();//避免輸入字母死循環}while(choice!=1&&choice!=2&&choice!=3&&choice!=4&&choice!=5);num1=game_rand();sleep(1);num2=game_rand();switch(choice){case1:result=num1+num2;printf("%d+%d=?\n",num1,num2);break;case2:result=num1-num2;printf("%d-%d=?\n",num1,num2);break;case3:result=num1*num2;printf("%d*%d=?\n",num1,num2);break;case4:result=(int)num1/num2;//取整數printf("%d/%d=?\n",num1,num2);break;case5:printf("Byebye!\n");return0;}printf("result=%d\n",result);for(i=0;i<3;i++)//3次機會{printf("SYSTEM:Pleaseinputyourresults:");scanf("%d",&test);if(result==test){printf("SYSTEM:Congratulations,acorrectanswer!\n\n");break;}else{printf("SYSTEM:sorry,wronganswer,remaining%dchances!\n",TIME-i-1);}}if(3==i)//3次全錯,退出{printf("Byebye!\n");return0;}}}
㈥ 求:世界著名西餐廳的菜單主頁設計圖(菜單外觀設計)
原創的可以的不
㈦ 西式生日宴會菜單如何設計
自助抄餐台形式
生日聚會
酒水
進口襲紅酒倒入杯中(酒會形式),汽水(可樂雪碧),果汁3種(橙汁'草莓汁'獼猴桃汁)
雙層生日蛋糕
冷盤
(水果沙拉, 德式土豆培根沙拉. 蘋果雞沙拉, 西班牙肉腸拼盤,意麵火腿沙拉,三文魚拼盤.金斯魚,蔬菜沙拉,海鮮泡芙
法式烤竹節大蝦)
水果盤
(蘋果,香蕉,橙,西瓜,聖女果,火龍果)
麵包盤
(餐包,蒜蓉包)
披薩
(乳酪大全.辣牛肉披薩)
點心
(水果蛋糕,提拉迷蘇,黑森林蛋糕)
主菜
英士燴牛肉,泰晤士宮廷扒雞,澳洲肉眼牛排,陪時令蔬菜.
主食
西班牙炒飯,義大利奶油培根蘑菇面
㈧ 西文下拉菜單的設計
很簡單,建議你去書店買本帶下拉菜單編程的源代碼光碟的書,或者去網上搜索下載這類源代碼,把菜單項里德中文翻譯成對應的英文,編譯成執行程序就可以啦。
㈨ 哪位大神會設計一份西餐全餐的菜單 成本是320元
去找人買一份,誰會告訴你