中国大学MOOC(C语言程序设计精髓)作业

第十四周 练兵区编程题
1、学生成绩管理系统V5.0(4分)
题目内容:

某班有最多不超过30人(具体人数由键盘输入)参加期末考试,最多不超过6门(具体门数由键盘输入)。参考学生成绩管理系统V4.0,定义结构体类型,用结构体数组作函数参数,编程实现如下菜单驱动的学生成绩管理系统:

(1)录入每个学生的学号、姓名和各科考试成绩;

(2)计算每门课程的总分和平均分;

(3)计算每个学生的总分和平均分;

(4)按每个学生的总分由高到低排出名次表;

(5)按每个学生的总分由低到高排出名次表;

(6)按学号由小到大排出成绩表;

(7)按姓名的字典顺序排出成绩表;

(8)按学号查询学生排名及其考试成绩;

(9)按姓名查询学生排名及其考试成绩;

(10)按优秀(90100)、良好(8089)、中等(7079)、及格(6069)、不及格(0~59)5个类别,对每门课程分别统计每个类别的人数以及所占的百分比;

(11)输出每个学生的学号、姓名、各科考试成绩,以及每门课程的总分和平均分。

要求程序运行后先显示如下菜单,并提示用户输入选项:

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

然后,根据用户输入的选项执行相应的操作。

下面是程序运行示例:

Input student number(n<30):

6↙

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

1↙

Input course number(m<=6):

3↙

Input student’s ID, name and score:

11003001↙

lisi↙

87↙

82↙

89↙

11003005↙

heli↙

98↙

92↙

90↙

11003003↙

ludi↙

75↙

78↙

80↙

11003002↙

dumo↙

48↙

50↙

67↙

11003004↙

zuma↙

65↙

69↙

72↙

11003006↙

suyu↙

100↙

95↙

94↙

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

2↙

course 1:sum=473,aver=79

course 2:sum=466,aver=78

course 3:sum=492,aver=82

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

3↙

student 1: sum=258,aver=86

student 2: sum=280,aver=93

student 3: sum=233,aver=78

student 4: sum=165,aver=55

student 5: sum=206,aver=69

student 6: sum=289,aver=96

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

4↙

Sort in descending order by score:

11003006 suyu 100 95 94 289 96

11003005 heli 98 92 90 280 93

11003001 lisi 87 82 89 258 86

11003003 ludi 75 78 80 233 78

11003004 zuma 65 69 72 206 69

11003002 dumo 48 50 67 165 55

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

5↙

Sort in ascending order by score:

11003002 dumo 48 50 67 165 55

11003004 zuma 65 69 72 206 69

11003003 ludi 75 78 80 233 78

11003001 lisi 87 82 89 258 86

11003005 heli 98 92 90 280 93

11003006 suyu 100 95 94 289 96

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

6↙

Sort in ascending order by number:

11003001 lisi 87 82 89 258 86

11003002 dumo 48 50 67 165 55

11003003 ludi 75 78 80 233 78

11003004 zuma 65 69 72 206 69

11003005 heli 98 92 90 280 93

11003006 suyu 100 95 94 289 96

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

7↙

Sort in dictionary order by name:

11003002 dumo 48 50 67 165 55

11003005 heli 98 92 90 280 93

11003001 lisi 87 82 89 258 86

11003003 ludi 75 78 80 233 78

11003006 suyu 100 95 94 289 96

11003004 zuma 65 69 72 206 69

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

8↙

Input the number you want to search:

11003007↙

Not found!

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

8↙

Input the number you want to search:

11003004↙

11003004 zuma 65 69 72 206 69

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

9↙

Input the name you want to search:

lili↙

Not found!

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

9↙

Input the name you want to search:

lisi↙

11003001 lisi 87 82 89 258 86

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

10↙

For course 1:

<60 1 16.67%

60-69 1 16.67%

70-79 1 16.67%

80-89 1 16.67%

90-99 1 16.67%

100 1 16.67%

For course 2:

<60 1 16.67%

60-69 1 16.67%

70-79 1 16.67%

80-89 1 16.67%

90-99 2 33.33%

100 0 0.00%

For course 3:

<60 0 0.00%

60-69 1 16.67%

70-79 1 16.67%

80-89 2 33.33%

90-99 2 33.33%

100 0 0.00%

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

11↙

11003002 dumo 48 50 67 165 55

11003005 heli 98 92 90 280 93

11003001 lisi 87 82 89 258 86

11003003 ludi 75 78 80 233 78

11003006 suyu 100 95 94 289 96

11003004 zuma 65 69 72 206 69

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

12↙

Input error!

Management for Students’ scores

1.Input record

2.Caculate total and average score of every course

3.Caculate total and average score of every student

4.Sort in descending order by score

5.Sort in ascending order by score

6.Sort in ascending order by number

7.Sort in dictionary order by name

8.Search by number

9.Search by name

10.Statistic analysis

11.List record

0.Exit

Please Input your choice:

0↙

End of program!

输入格式:

( 1 )录入学生的人数:

             **要求输入数据格式为:"%d"

             **提示信息为:"Input student number(n<30):\n"

( 2 )录入课程数:

           **要求输入数据格式为:"%d"

           **提示信息为:"Input course number(m<=%d):\n"

( 3 )录入每个学生的学号、姓名和考试成绩:

           **要求学号、姓名的输入数据格式为:"%ld%s"

           **要求考试成绩的输入数据格式为:"%f"

           **提示信息为:"Input student's ID, name and score:\n"             

输出格式:

计算每门课程的总分和平均分:

          **要求输出总分与平均分格式为:"course %d:sum=%.0f,aver=%.0f\n"

计算每个学生的总分和平均分:

          **要求输出总分与平均分格式为:"student %d: sum=%.0f,aver=%.0f\n"

按成绩由高到低排出名次表:

          **要求学号、姓名的输出格式为:"%ld\t%s\t"

          **要求成绩的输出格式为:"%.0f\t"

          **要求总分及平均分的输出格式为:"%.0f\t%.0f\n"

          **提示信息为:"Sort in descending order by score:\n"

按成绩由低到高排出名次表:

          **要求学号、姓名的输出格式为:"%ld\t%s\t"

          **要求成绩的输出格式为:"%.0f\t"

          **要求总分及平均分的输出格式为:"%.0f\t%.0f\n"

          **提示信息为:"Sort in ascending order by score:\n"

按学号由小到大排出成绩表:

          **要求学号、姓名的输出格式为:"%ld\t%s\t"

          **要求成绩的输出格式为:"%.0f\t"

          **要求总分及平均分的输出格式为:"%.0f\t%.0f\n"

          **提示信息为:"Sort in ascending order by number:\n"

按姓名的字典顺序排出成绩表

          **要求学号、姓名的输出格式为:"%ld\t%s\t"

          **要求成绩的输出格式为:"%.0f\t"

          **要求总分及平均分的输出格式为:"%.0f\t%.0f\n"

          **提示信息为:"Sort in dictionary order by name:\n"

按学号查询学生排名及其考试成绩:

           **如果未查到此学号的学生,提示信息为:"Not found!\n";

           **如果查询到该学生

               # 要求学号、姓名的输出格式为:"%ld\t%s\t"

               # 要求成绩的输出格式为:"%.0f\t"

               # 要求总分及平均分的输出格式为:"%.0f\t%.0f\n"

           **提示信息为:"Input the number you want to search:\n"

按姓名查询学生排名及其考试成绩;

           **如果未查到此学号的学生,提示信息为:"Not found!\n";

           **如果查询到该学生

               # 要求学号、姓名的输出格式为:"%ld\t%s\t"

               # 要求成绩的输出格式为:"%.0f\t"

               # 要求总分及平均分的输出格式为:"%.0f\t%.0f\n"

           **提示信息为:"Input the name you want to search:\n"

按优秀(90100)、良好(8089)、中等(7079)、及格(6069)、不及格(0~59)5个类别,统计每个类别的人数以及所占的百分比:

            **成绩<60输出提示格式为:"<60\t%d\t%.2f%%\n";

            **成绩=100输出格式为:"%d\t%d\t%.2f%%\n";

            **其他要求输出百分比格式为:"%d-%d\t%d\t%.2f%%\n"

            **提示信息为: "For course %d:\n"

输出每个学生的学号、姓名、考试成绩,以及课程总分和平均分

          **要求学号、姓名的输出格式为:"%ld\t%s\t"

          **要求成绩的输出格式为:"%.0f\t"

          **要求总分及平均分的输出格式为:"%.0f\t%.0f\n"

选择退出(菜单项0)

            **提示信息:"End of program!"

菜单项选择错误(不在0-11之间)

            **提示信息:"Input error!\n"

为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。

程序的主要框架如下,请将主函数里的函数调用语句中缺少的实参、以及自定义函数中的函数体(用…替代的部分)补充完整。

#include <stdio.h>

#include <stdlib.h>

#include <string.h>

#define MAX_LEN 10 /* 字符串最大长度 */

#define STU_NUM 30 /* 最多的学生人数 */

#define COURSE_NUM 6 /* 最多的考试科目数 */

typedef struct student

{

	long num;			/* 每个学生的学号 */

	char name[MAX_LEN];            	/* 每个学生的姓名 */

	float score[COURSE_NUM];	/* 每个学生COURSE_NUM门功课的成绩 */

	float sum;                   	/* 每个学生的总成绩 */

	float aver;               	/* 每个学生的平均成绩 */

}STU;

int Menu(void);

void ReadScore(STU stu[], int n, int m);

void AverSumofEveryStudent(STU stu[], int n, int m);

void AverSumofEveryCourse(STU stu[], int n, int m);

void SortbyScore(STU stu[],int n,int m,int (*compare)(float a,float b));

int Ascending(float a, float b);

int Descending(float a, float b);

void SwapFloat(float *x, float *y);

void SwapLong(long *x, long *y);

void SwapChar(char x[], char y[]);

void AsSortbyNum(STU stu[], int n, int m);

void SortbyName(STU stu[], int n, int m);

void SearchbyNum(STU stu[], int n, int m);

void SearchbyName(STU stu[], int n, int m);

void StatisticAnalysis(STU stu[], int n, int m);

void PrintScore(STU stu[], int n, int m);

int main()

{

char  ch;

int   n = 0, m = 0;  /* 学生人数为n,课程门数为m */

STU   stu[STU_NUM];

printf("Input student number(n<=30):\n", STU_NUM);

    scanf("%d", &n);

while (1)

{

	ch = Menu();       /* 显示菜单,并读取用户输入 */

	switch (ch)

	{

		case 1:

                            printf("Input course number(m<=%d):\n",COURSE_NUM);

                        scanf("%d", &m);

                            ReadScore(..........);

			break;

		case 2: 

                            AverSumofEveryCourse(..........);

			break;

                    case 3: 

                            AverSumofEveryStudent(..........);

			break;

		case 4: 

                            SortbyScore(..........);

			printf("Sort in descending order by score:\n");

			PrintScore(..........);

			break;

		case 5: 

                            SortbyScore(..........);

			printf("Sort in ascending order by score:\n");

			PrintScore(..........);

			break;

		case 6: 

                            AsSortbyNum(..........);

			printf("Sort in ascending order by number:\n");

			PrintScore(..........);

			break;

		case 7: 

                            SortbyName(..........);

			printf("Sort in dictionary order by name:\n");

			PrintScore(..........);

			break;

		case 8: 

                            SearchbyNum(..........);

			break;

		case 9: 

                            SearchbyName(..........);

			break;

		case 10: 

                            StatisticAnalysis(..........);

			break;

		case 11:

                            PrintScore(..........);

			break;

		case 0: 

                            printf("End of program!");

		       	exit(0);

		default: printf("Input error!\n");

	}

}

return 0;

}

/* 函数功能:显示菜单并获得用户键盘输入的选项 */

int Menu(void)

{

..........

}

/* 函数功能:输入n个学生的m门课成绩 */

void ReadScore(STU stu[], int n, int m)

{

..........

}

/* 函数功能:计算每个学生各门课程的总分和平均分 */

void AverSumofEveryStudent(STU stu[], int n, int m)

{

..........

}

/* 函数功能:计算每门课程的总分和平均分 */

void AverSumofEveryCourse(STU stu[], int n, int m)

{

..........

}

/* 函数功能:按选择法将数组sum的元素值排序 */

void SortbyScore(STU stu[], int n, int m, int (*compare)(float a, float b))

{

..........

}

/* 使数据按升序排序 */

int Ascending(float a, float b)

{

..........

}

/* 使数据按降序排序 */

int Descending(float a, float b)

{

..........

}

/* 交换两个单精度浮点型数据 */

void SwapFloat(float *x, float *y)

{

..........

}

/* 交换两个长整型数据 */

void SwapLong(long *x, long *y)

{

..........

}

/* 交换两个字符串 */

void SwapChar(char x[], char y[])

{

..........

}

/* 函数功能:按选择法将数组num的元素值按从低到高排序 */

void AsSortbyNum(STU stu[], int n, int m)

{

..........

}

/* 函数功能:交换法实现字符串按字典顺序排序 */

void SortbyName(STU stu[], int n, int m)

{

..........

}

/* 函数功能:按学号查找学生成绩并显示查找结果 */

void SearchbyNum(STU stu[], int n, int m)

{

..........

}

/* 函数功能:按姓名的字典顺序排出成绩表 */

void SearchbyName(STU stu[], int n, int m)

{

..........

}

/* 函数功能:统计各分数段的学生人数及所占的百分比 */

void StatisticAnalysis(STU stu[], int n, int m)

{

..........

}

/* 函数功能: 打印学生成绩 */

void PrintScore(STU stu[], int n, int m)

{

..........

}

时间限制:500ms内存限制:32000kb
C语言实现:

#include  <stdio.h>
#include  <stdlib.h>
#include  <string.h>
#define   MAX_LEN  10                	   /* 字符串最大长度 */
#define   STU_NUM 30                       /* 最多的学生人数 */
#define   COURSE_NUM 6                     /* 最多的考试科目数 */
typedef struct student
{
	long num;						/* 每个学生的学号 */
	char name[MAX_LEN];            	/* 每个学生的姓名 */
	float score[COURSE_NUM];		/* 每个学生COURSE_NUM门功课的成绩 */
	float sum;                   	/* 每个学生的总成绩 */
	float aver;               		/* 每个学生的平均成绩 */
}STU;
int   Menu(void);
void  ReadScore(STU stu[], int n, int m);
void  AverSumofEveryStudent(STU stu[], int n, int m);
void  AverSumofEveryCourse(STU stu[], int n, int m);
void  SortbyScore(STU stu[],int n,int m,int (*compare)(float a,float b));
int   Ascending(float a, float b);
int   Descending(float a, float b);
void  SwapFloat(float *x, float *y);
void  SwapLong(long *x, long *y);
void  SwapChar(char x[], char y[]);
void  AsSortbyNum(STU stu[], int n, int m);
void  SortbyName(STU stu[], int n, int m);
void  SearchbyNum(STU stu[], int n, int m);
void  SearchbyName(STU stu[], int n, int m);
void  StatisticAnalysis(STU stu[], int n, int m);
void  PrintScore(STU stu[], int n, int m);
int main()
{
	int  ch;
	int   n = 0, m = 0;  /* 学生人数为n,课程门数为m */
	STU   stu[STU_NUM];
	printf("Input student number(n<=30):\n", STU_NUM);
    scanf("%d", &n);
	while (1)
	{
		ch = Menu();      /* 显示菜单,并读取用户输入 */
		switch (ch)
		{
			case 1:
				printf("Input course number(m<=%d):\n",COURSE_NUM);
	            scanf("%d", &m);
				printf("Input student's ID, name and score:\n");
                ReadScore(stu, n, m);
				break;
			case 2: 
                AverSumofEveryCourse(stu, n, m);
				break;
            case 3: 
                AverSumofEveryStudent(stu, n, m);
				break;
			case 4: 
                SortbyScore(stu, n, m, Descending);
				printf("Sort in descending order by score:\n");
				PrintScore(stu, n, m);
				break;
			case 5: 
                SortbyScore(stu, n, m, Ascending);
				printf("Sort in ascending order by score:\n");
				PrintScore(stu, n, m);
				break;
			case 6: 
                AsSortbyNum(stu, n, m);
				printf("Sort in ascending order by number:\n");
				PrintScore(stu, n, m);
				break;
			case 7: 
                SortbyName(stu, n, m);
				printf("Sort in dictionary order by name:\n");
				PrintScore(stu, n, m);
				break;
			case 8: 
                SearchbyNum(stu, n, m);
				break;
			case 9: 
                SearchbyName(stu, n, m);
				break;
			case 10: 
                StatisticAnalysis(stu, n, m);
				break;
			case 11:
                PrintScore(stu, n, m);
				break;
			case 0:
                printf("End of program!");
			    exit(0);
			default: printf("Input error!\n");
		}

	}

	return 0;

}



/*  函数功能:显示菜单并获得用户键盘输入的选项 */

int Menu(void)
{
	int ret;
	printf("Management for Students' scores\n"
		"1.Input record\n"
		"2.Caculate total and average score of every course\n"
		"3.Caculate total and average score of every student\n"
		"4.Sort in descending order by score\n"
		"5.Sort in ascending order by score\n"
		"6.Sort in ascending order by number\n"
		"7.Sort in dictionary order by name\n"
		"8.Search by number\n"
		"9.Search by name\n"
		"10.Statistic analysis\n"
		"11.List record\n"
		"0.Exit\n"
		"Please Input your choice:\n");
	scanf("%d", &ret);
	return ret;
}



/* 函数功能:输入n个学生的m门课成绩 */

void ReadScore(STU stu[], int n, int m)

{
	int i, r;
	for(i=0;i<n;i++)
	{
		scanf("%ld%s", &stu[i].num, stu[i].name);
		for(r=0;r<m;r++)
		{
			scanf("%f", &stu[i].score[r]);
		}
	}
	return ;
}



/* 函数功能:计算每个学生各门课程的总分和平均分 */

void AverSumofEveryStudent(STU stu[], int n, int m)

{
	int i, r;
	for(i=0;i<n;i++)
	{
		stu[i].sum = 0;
		for(r=0;r<m;r++)
		{
			stu[i].sum = stu[i].sum + stu[i].score[r];
		}
		stu[i].aver = stu[i].sum / m;
		printf("student %d: sum=%.0f,aver=%.0f\n", i+1, stu[i].sum, stu[i].aver);
	}
	return ;
}



/* 函数功能:计算每门课程的总分和平均分 */

void AverSumofEveryCourse(STU stu[], int n, int m)

{
	int i, r;
	float sum;
	for(i=0;i<m;i++)
	{
		sum = 0;
		for(r=0;r<n;r++)
		{
			sum = sum + stu[r].score[i];
		}
		printf("course %d:sum=%.0f,aver=%.0f\n", i+1, sum, sum/n);
	}
	return ;
}

/* 函数功能:按选择法将数组sum的元素值排序 */

void SortbyScore(STU stu[], int n, int m, int (*compare)(float a, float b))

{
	int i, r, t;
	for(i=0;i<n;i++)
	{
		for(r=0;r<n-1;r++)
		{
			if((*compare)(stu[r].sum, stu[r+1].sum))
			{
				SwapLong(&stu[r].num, &stu[r+1].num);
				SwapChar(stu[r].name, stu[r+1].name);
				for(t=0;t<m;t++)
				{
					SwapFloat(&stu[r].score[t], &stu[r+1].score[t]);
				}
				SwapFloat(&stu[r].sum, &stu[r+1].sum);
				SwapFloat(&stu[r].aver, &stu[r+1].aver);
			}
		}
	}
	return ;
}



/* 使数据按升序排序 */

int Ascending(float a, float b)

{
	if(a > b)
		return 1;
	return 0;
}



/* 使数据按降序排序 */

int Descending(float a, float b)

{
	if(a < b)
		return 1;
	return 0;
}



/* 交换两个单精度浮点型数据 */

void  SwapFloat(float *x, float *y)

{
	float term;
	term = *x;
	*x = *y;
	*y = term;
	return ;
}



/* 交换两个长整型数据 */

void  SwapLong(long *x, long *y)

{
	long term;
	term = *x;
	*x = *y;
	*y = term;
	return ;
}



/* 交换两个字符串 */

void  SwapChar(char x[], char y[])

{
	char term[MAX_LEN];
	strcpy(term, x);
	strcpy(x, y);
	strcpy(y, term);
	return ;
}



/* 函数功能:按选择法将数组num的元素值按从低到高排序 */

void AsSortbyNum(STU stu[], int n, int m)

{
	int i, r, t;
	for(i=0;i<n;i++)
	{
		for(r=0;r<n-1;r++)
		{
			if(stu[r].num > stu[r+1].num)
			{
				SwapLong(&stu[r].num, &stu[r+1].num);
				SwapChar(stu[r].name, stu[r+1].name);
				for(t=0;t<m;t++)
				{
					SwapFloat(&stu[r].score[t], &stu[r+1].score[t]);
				}
				SwapFloat(&stu[r].sum, &stu[r+1].sum);
				SwapFloat(&stu[r].aver, &stu[r+1].aver);
			}
		}
	}
	return ;
}



/* 函数功能:交换法实现字符串按字典顺序排序 */

void SortbyName(STU stu[], int n, int m)

{
	int i, r, t;
	for(i=0;i<n;i++)
	{
		for(r=0;r<n-1;r++)
		{
			if(strcmp(stu[r].name, stu[r+1].name) > 0)
			{
				SwapLong(&stu[r].num, &stu[r+1].num);
				SwapChar(stu[r].name, stu[r+1].name);
				for(t=0;t<m;t++)
				{
					SwapFloat(&stu[r].score[t], &stu[r+1].score[t]);
				}
				SwapFloat(&stu[r].sum, &stu[r+1].sum);
				SwapFloat(&stu[r].aver, &stu[r+1].aver);
			}
		}
	}
	return ;
}



/* 函数功能:按学号查找学生成绩并显示查找结果 */

void SearchbyNum(STU stu[], int n, int m)

{
	long term;
	int i, r;
	printf("Input the number you want to search:\n");
	scanf("%ld", &term);
	for(i=0;i<n;i++)
	{
		if(term%1000 == stu[i].num%1000)
		{
			printf("%ld\t%s\t", stu[i].num, stu[i].name);
			for(r=0;r<m;r++)
			{
				printf("%.0f\t", stu[i].score[r]);
			}
			printf("%.0f\t%.0f\n", stu[i].sum, stu[i].aver);
			return ;
		}
	}
	printf("Not found!\n");
	return ;
}



/* 函数功能:按姓名查找学生成绩并显示查找结果 */

void SearchbyName(STU stu[], int n, int m)

{
	int i, r;
	char ch[MAX_LEN];
	printf("Input the name you want to search:\n");
	scanf("%s", ch);
	for(i=0;i<n;i++)
	{
		if(strcmp(ch, stu[i].name) == 0)
		{
			printf("%ld\t%s\t", stu[i].num, stu[i].name);
			for(r=0;r<m;r++)
			{
				printf("%.0f\t", stu[i].score[r]);
			}
			printf("%.0f\t%.0f\n", stu[i].sum, stu[i].aver);
			return ;
		}
	}
	printf("Not found!\n");
	return ;
}

/* 函数功能:统计各分数段的学生人数及所占的百分比 */

void StatisticAnalysis(STU stu[], int n, int m)

{
	int i, r;
	int x[COURSE_NUM][COURSE_NUM];
	memset(x, 0, sizeof(int)*COURSE_NUM*COURSE_NUM);
	for(i=0;i<m;i++)
	{
		for(r=0;r<n;r++)
		{
			if(stu[r].score[i] < 60)
			{
				x[i][0]++;
			}
			else if(stu[r].score[i] < 70)
			{
				x[i][1]++;
			}
			else if(stu[r].score[i] < 80)
			{
				x[i][2]++;
			}
			else if(stu[r].score[i] < 90)
			{
				x[i][3]++;
			}
			else if(stu[r].score[i] < 100)
			{
				x[i][4]++;
			}
			else 
			{
				x[i][5]++;
			}
		}
	}
	for(i=0;i<m;i++)
	{
		printf("For course %d:\n", i+1);
		printf("<60\t%d\t%.2f%%\n", x[i][0], (float)x[i][0]*100/n);
		printf("%d-%d\t%d\t%.2f%%\n", 60, 69, x[i][1], (float)x[i][1]*100/n);
		printf("%d-%d\t%d\t%.2f%%\n", 70, 79, x[i][2], (float)x[i][2]*100/n);
		printf("%d-%d\t%d\t%.2f%%\n", 80, 89, x[i][3], (float)x[i][3]*100/n);
		printf("%d-%d\t%d\t%.2f%%\n", 90, 99, x[i][4], (float)x[i][4]*100/n);
		printf("%d\t%d\t%.2f%%\n", 100, x[i][5], (float)x[i][5]*100/n);
	}
	return ;
}



/* 函数功能: 打印学生成绩 */

void PrintScore(STU stu[], int n, int m)

{
	int i, r;
	for(i=0;i<n;i++)
	{
		printf("%ld\t%s\t", stu[i].num, stu[i].name);
		for(r=0;r<m;r++)
		{
			printf("%.0f\t", stu[i].score[r]);
		}
		printf("%.0f\t%.0f\n", stu[i].sum, stu[i].aver);
	}
	return ;
}

2、字符串中的字符排序(4分)
题目内容:

编写一个函数,对一个字符串中的字符进行升序排序,并输出字符排序后的字符串,字符串长度小于20。

程序运行结果如下:

Input a string:

friend↙

definr

输入提示信息:“Input a string:\n”

输入格式:

字符串输入采用:gets()函数

输出格式:"%s"

为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。

时间限制:500ms内存限制:32000kb
C语言实现:

#include <stdio.h>
#include <string.h>
#define N 30
void Y(char str[N]);
int main()
{
	char str[N];
	printf("Input a string:\n");
	gets(str);
	Y(str);
	printf("%s", str);
	return 0;
}
void Y(char str[N])
{
	int i, r, term;
	int lenth=strlen(str);
	for(i=0;i<lenth;i++)
	{
		for(r=0;r<lenth-1;r++)
		{
			if(str[r] > str[r+1])
			{
				term = str[r];
				str[r] = str[r+1];
				str[r+1] = term;
			}
		}
	}
	return ;
}

3、纯数字字符串检验(4分)
题目内容:

按给定函数原型编程检查一个字符串是否全由数字组成。

int IsAllDigit(char p[]);/若全由数字组成,则函数返回1,否则返回0/

在主函数中,从键盘输入一个字符串(假设字符串的最大长度为20个字符),调用函数IsAllDigit(),检查该字符串是否全由数字组成,然后在主函数中根据函数IsAllDigit()的返回值输出相应的提示信息。

程序运行结果示例1:

Please input a string:

help456↙

The string is not digit string.

程序运行结果示例2:

Please input a string:

20150216↙

The string is digit string.

字符串输入提示信息:“Please input a string:\n”

输入格式: 字符串输入采用 gets()函数

输出格式:

判断是纯数字字符串:“The string is digit string.”

判断不是纯数字字符串:“The string is not digit string.”

为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。

时间限制:500ms内存限制:32000kb
C语言实现:

#include <stdio.h>
#include <string.h>
#define N 20
int IsAllDigit(char p[]);/* 若全由数字组成,则函数返回1,否则返回0 */
int main()
{
	char str[N+1];
	int ret;
	printf("Please input a string:\n");
	gets(str);
	ret = IsAllDigit(str);
	if(ret)
		printf("The string is digit string.");
	else
		printf("The string is not digit string.");
	return 0;
}
int IsAllDigit(char p[])
{
	int lenth = strlen(p), i;
	for(i=0;i<lenth;i++)
	{
		if(p[i] < '0' || p[i] > '9')
			return 0;
	}
	return 1;
}

4、孪生素数(4分)
题目内容:

相差为2的两个素数称为孪生素数。例如,3与5,41与43等都是孪生素数。设计程序求出指定区间上的所有孪生素数对。区间上限和下限由键盘获取。

程序运行示例如下:

please input c,d(c>2):

10,200↙

(11,13)

(17,19)

(29,31)

(41,43)

(59,61)

(71,73)

(101,103)

(107,109)

(137,139)

(149,151)

(179,181)

(191,193)

(197,199)

total=13

区间上限和下限的输入提示信息:“please input c,d(c>2):\n”

输入格式:

区间上限和下限的输入格式: “%ld,%ld”

输出格式:

孪生素数的输出格式:"(%ld,%ld)\n"

所有孪生素数对的总数输出格式: “total=%d\n”

为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。

时间限制:500ms内存限制:32000kb
C语言实现:

#include <stdio.h>
#include <math.h>
long JudgePrime(long n);
int main()
{
	long c, d;
	int count=0, i;
	printf("please input c,d(c>2):\n");
	scanf("%ld,%ld", &c, &d);
	for(i=c;i<=d-2;i++)
	{
		if(JudgePrime(i) && JudgePrime(i+2))
		{
			printf("(%ld,%ld)\n", i, i+2);
			count++;
		}
	}
	printf("total=%d\n", count);
	return 0;
}
long JudgePrime(long n)
{
	int i;
	if(n<2)
		return 0;
	for(i=2;i<=sqrt(n);i++)
	{
		if(n%i == 0)
			return 0;
	}
	return 1;
}

5、求解不等式(4分)
题目内容:

对指定正实数n(采用双精度浮点型表示),试求满足下面平方根不等式的最小整数m,并输出不等式左边的值。程序中浮点数的数据类型均为double。

在这里插入图片描述

程序运行示例如下:

Input n:

5.1↙

Result:m>=2

s=5.15

输入提示信息:“Input n:\n”

输入格式: “%lf”

输出格式:

整数m的输出格式:“Result:m>=%d\n”

不等式左边的值的输出格式:“s=%.2f\n”

为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。

时间限制:500ms内存限制:32000kb
C语言实现:

#include <stdio.h>
#include <math.h>
int Y(double n, double *sum);
int main()
{
	double n, sum=0;
	int ret;
	printf("Input n:\n");
	scanf("%lf", &n);
	ret = Y(n, &sum);
	printf("Result:m>=%d\n", ret);
	printf("s=%.2f\n", sum);
	return 0;
}
int Y(double n, double *sum)
{
	int i, m=0;
	while(*sum <= n)
	{
		*sum = 0;
		for(i=m;i<=2*m;i++)
		{
			*sum = *sum + sqrt(i);
		}
		m++;
	}
	return m-1;
}
  • 7
    点赞
  • 25
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
C语言程序设计精髓MOOC》第三周主要内容是关于指针和数组的学习。 首先是指针的介绍和使用。指针是C语言一个非常重要的概念,它可以用来间接访问内存的数据,通过指针可以实现对变量地址的操作。在学习过程,我们了解了指针的定义和声明,以及指针与数组之间的关系。指针在程序设计的应用非常广泛,特别是在动态内存分配和函数调用等方面,有着重要的作用。 其次是数组的使用。数组是一种由相同类型的元素组成的集合,它在C语言非常常用。在第三周的学习,我们了解了数组的定义、初始化和遍历等基本操作,还学习了一些在数组常用的算法和技巧。通过多维数组和指针数组的学习,我们可以更灵活地处理多个数据。 除了指针和数组,第三周还涉及到了C语言结构体(struct)和文件的输入输出操作等内容。结构体是一种可以封装多个不同类型的数据的自定义数据类型,它在实际的程序设计经常被用于组织和管理数据。文件的输入输出操作涉及了C语言如何读写文件以及相关的文件处理函数等知识点。 通过学习《C语言程序设计精髓MOOC》第三周的内容,我们对指针和数组有了更深入的认识,并且掌握了它们的基本用法和应用技巧。这对于进一步学习和理解C语言程序设计以及其他高级编程语言都非常有帮助。此外,通过作业和练习的完成,我们可以检验和巩固所学的知识,提高我们自己的编程能力。希望通过这门课程的学习,能够让我们对C语言有更全面和深入的了解,为以后的学习和工作打下坚实的基础。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小码农12138

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值