From f619cd83a5121841721461358dfc4d17b6685ec3 Mon Sep 17 00:00:00 2001 From: p62jhspgx <2736273201@qq.com> Date: Mon, 13 Nov 2023 21:19:31 +0800 Subject: [PATCH] ADD file via upload --- t1.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 t1.c diff --git a/t1.c b/t1.c new file mode 100644 index 0000000..ca3c281 --- /dev/null +++ b/t1.c @@ -0,0 +1,50 @@ +#include +void menu(); +int main() +{ + menu(); +} +void menu() +{ + for (int i = 0; i < 30; i++) + { + printf(" "); + } + printf("1.Input\n"); + for (int i = 0; i < 30; i++) + { + printf(" "); + } + printf("2.Output\n"); + for (int i = 0; i < 30; i++) + { + printf(" "); + } + printf("3.Order\n"); + for (int i = 0; i < 30; i++) + { + printf(" "); + } + printf("4.Quit\n"); + char c; + scanf("%c", &c); + if (c == 'i') + { + printf("You are trying to Input info\n"); + } + else if (c == 'o') + { + printf("You are trying to Output info\n"); + } + else if (c == 'm') + { + printf("You are trying to Make things ordered\n"); + } + else if (c == 'q') + { + printf("You are about to Quit\n"); + } + else{ + printf("Wrong input\n"); + } +} \ No newline at end of file