From fd28057d9d9fd499d9c8d92df3602d07d8bd20a6 Mon Sep 17 00:00:00 2001 From: zhangyu <387881603@qq.com> Date: Sat, 15 Apr 2023 16:52:48 +0800 Subject: [PATCH] =?UTF-8?q?ZY=5F=E6=98=BE=E7=A4=BA=E8=8F=9C=E5=8D=95?= =?UTF-8?q?=E5=B9=B6=E8=8E=B7=E5=BE=97=E8=BE=93=E5=85=A5=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index dc72918..6041a31 100644 --- a/README.md +++ b/README.md @@ -154,24 +154,24 @@ int main(void) int Menu(void) { int itemSelected; - printf("Management for Studets' scores\n"); + printf("Management for Students' scores\n"); printf("1.Input record\n"); printf("2.Calculate total and average score of every course\n"); - printf("3.Calculate total and average score of evry students\n"); + printf("3.Calculate total and average score of evry student\n"); printf("4.Sort in descending order by score\n"); printf("5.Sort in ascending order by score\n"); - printf("6.Sort in ascending order by name\n"); + printf("6.Sort in ascending order by number\n"); printf("7.Sort in dictionary order by name\n"); printf("8.Search by number\n"); printf("9.Search by name\n"); - printf("10.Statisit analysis\n"); + printf("10.Statistic analysis\n"); printf("11.List record\n"); printf("12.Write to a file\n"); printf("13.Read from a file\n"); printf("0.Exit\n"); printf("Please Input your choice:"); scanf("%d",&itemSelected); //读入用户输入 - return itemSeleted; + return itemSelected; } ```