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



