本题要求编写程序,在屏幕上打印5行菜单。
输入格式:
本题目没有输入。
输出格式:
按照下列格式打印菜单,每行显示一句。注意除了每行的换行不能有任何多余字符。
[1] Select crisps
[2] Select popcorn
[3] Select chocolate
[4] Select cola
[0] Exit
#include<stdio.h>
int main(void)
{
printf("[1] Select crisps\n");
printf("[2] Select popcorn\n");
printf("[3] Select chocolate\n");
printf("[4] Select cola\n");
printf("[0] Exit\n");
return 0;
}