本题要求编写程序,在屏幕上打印5行菜单。
本题目没有输入。
按照下列格式打印菜单,每行显示一句。注意除了每行的换行不能有任何多余字符。
[1] Select crisps
[2] Select popcorn
[3] Select chocolate
[4] Select cola
[0] Exit
结尾无空行
[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[2] Select popcorn\n[3] Select chocolate\n[4] Select cola\n[0] Exit"); return 0; }