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 <string.h>
#include <stdlib.h>
#include <ctype.h>
#define MAX_LEN  10  /* 字符串最大长度 */
#define STU_NUM 30   /* 最多的学生人数 */
#define COURSE_NUM 6  /* 最多的考试科目数 */
int n; //represent students number
int m; //课程数 
float sum[COURSE_NUM], aver[COURSE_NUM];//每门课程的总分和成绩 
typedef struct student{long int stuID;char name[MAX_LEN];float score[COURSE_NUM];float sum, aver;
}STUDENT;
STUDENT stu[STU_NUM];
//0 代表降序 1代表升序 
int cmpByScore1(const void *a, const void *b){STUDENT *s1 = (STUDENT *)a;STUDENT *s2 = (STUDENT *)b;return s1->sum - s2->sum;
}
int cmpByScore0(const void *a, const void *b){STUDENT *s1 = (STUDENT *)a;STUDENT *s2 = (STUDENT *)b;return s2->sum - s1->sum;
}
int cmpByNumber0(const void *a, const void *b){STUDENT *s1 = (STUDENT *)a;STUDENT *s2 = (STUDENT *)b;return s2->stuID - s1->stuID;
}
int cmpByNumber1(const void *a, const void *b){STUDENT *s1 = (STUDENT *)a;STUDENT *s2 = (STUDENT *)b;return s1->stuID - s2->stuID;
}
int cmpByName1(const void *a, const void *b){STUDENT *s1 = (STUDENT *)a;STUDENT *s2 = (STUDENT *)b;if(strcmp(s1->name, s2->name) > 0 )  return 1;else return -1;
}
int cmpByName0(const void *a, const void *b){STUDENT *s1 = (STUDENT *)a;STUDENT *s2 = (STUDENT *)b;if(strcmp(s1->name, s2->name) < 0 )  return 1;else return -1;
}
void menu(); 
void inputRecord();
void calcStudent();
void calcCourse();
void sortByScore(int order);
void sortByNumber(int order);
void sortByName(int order);
void searchByNumber();
void searchByName();
void analysis();
void print();
void Exit();
int main()
{	printf("Input student number(n<30):\n");scanf("%d", &n);while(1){menu();}
}
void menu(){printf("Management for Students' scores\n");printf("1.Input record\n");printf("2.Caculate total and average score of every course\n");printf("3.Caculate total and average score of every 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 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.Statistic analysis\n");printf("11.List record\n");printf("0.Exit\n");printf("Please Input your choice:\n");int choice;scanf("%d", &choice);switch(choice){case 1: inputRecord(); break;case 2: calcCourse(); break;case 3: calcStudent(); break;case 4: sortByScore(0); break;case 5: sortByScore(1); break;case 6: sortByNumber(1); break;case 7: sortByName(1); break;case 8: searchByNumber(); break;case 9: searchByName(); break;case 10: analysis(); break;case 11: print(); break;case 0: Exit();break;default: printf("Input error!\n");}
}
void inputRecord(){printf("Input course number(m<=6):\n");scanf("%d", &m);printf("Input student's ID, name and score:\n");int i, j;for(i=0; i<n; ++i){scanf("%ld%s", &stu[i].stuID, stu[i].name);stu[i].sum=0; for(j=0; j<m; ++j){scanf("%f",&stu[i].score[j]);stu[i].sum+=stu[i].score[j];}stu[i].aver=stu[i].sum/(float)m;}
}
void calcCourse(){int i, j;for(j=0; j<m; ++j){//第j门课程 sum[j]=0;for(i=0; i<n; ++i){//第i个学生 sum[j]+=stu[i].score[j];}aver[j]=sum[j]/(float)n;printf("course %d:sum=%.0f,aver=%.0f\n",j+1, sum[j], aver[j]);}
}
void calcStudent(){for(int i=0; i<n; ++i){printf("student %d:sum=%.0f,aver=%.0f\n", i+1, stu[i].sum, stu[i].aver);}
}
void sortByScore(int order){//0 代表降序 1代表升序 if(order){printf("Sort in ascending order by score:\n");qsort(stu, n, sizeof(stu[0]), cmpByScore1);}  else {printf("Sort in descending order by score:\n");qsort(stu, n, sizeof(stu[0]), cmpByScore0);}print();
}
void sortByNumber(int order){//0 代表降序 1代表升序 if(order){printf("Sort in ascending order by number:\n");qsort(stu, n, sizeof(stu[0]),cmpByNumber1);}  else {printf("Sort in descending order by number:\n");qsort(stu, n, sizeof(stu[0]),cmpByNumber0);}print();
}
void sortByName(int order){//0 代表降序 1代表升序 if(order){printf("Sort in dictionary order by name:\n");qsort(stu, n, sizeof(stu[0]),cmpByName1);}  else {printf("Sort in dictionary order by name:\n");qsort(stu, n, sizeof(stu[0]),cmpByName0);}print();
}
void searchByNumber(){printf("Input the number you want to search:\n");long int id;scanf("%ld", &id);int i, j;for(i=0; i<n; ++i){if(stu[i].stuID==id){printf("%ld\t%s\t", stu[i].stuID, stu[i].name);for(j=0; j<m; ++j){printf("%.0f\t", stu[i].score[j]);}printf("%.0f\t%.0f\n", stu[i].sum, stu[i].aver); return;}}printf("Not found!\n");
}
void searchByName(){printf("Input the name you want to search:\n");char name[MAX_LEN];scanf("%s", name);int i, j;for(i=0; i<n; ++i){if(strcmp(stu[i].name, name)==0){printf("%ld\t%s\t", stu[i].stuID, stu[i].name);for(j=0; j<m; ++j){printf("%.0f\t", stu[i].score[j]);}printf("%.0f\t%.0f\n", stu[i].sum, stu[i].aver); return;}}printf("Not found!\n");
}
void analysis(){int i, j;for(j=0; j<m; ++j){printf( "For course %d:\n", j+1);int cnt[6]={0};for(i=0; i<n; ++i){if(stu[i].score[j]>=100) cnt[5]++;else if(stu[i].score[j]>=90) cnt[0]++;else if(stu[i].score[j]>=80) cnt[1]++;else if(stu[i].score[j]>=70) cnt[2]++;else if(stu[i].score[j]>=60) cnt[3]++;else cnt[4]++;}printf("<60\t%d\t%.2f%%\n", cnt[4], 100*(float)cnt[4]/n);printf("%d-%d\t%d\t%.2f%%\n", 60, 69, cnt[3], 100*(float)cnt[3]/n);printf("%d-%d\t%d\t%.2f%%\n", 70, 79, cnt[2], 100*(float)cnt[2]/n);printf("%d-%d\t%d\t%.2f%%\n", 80, 89, cnt[1], 100*(float)cnt[1]/n);printf("%d-%d\t%d\t%.2f%%\n", 90, 99, cnt[0], 100*(float)cnt[0]/n);printf("%d\t%d\t%.2f%%\n", 100, cnt[5], 100*(float)cnt[5]/n);}}
void print(){int i, j;for(i=0; i<n; ++i){printf("%ld\t%s\t", stu[i].stuID, stu[i].name );for(j=0; j<m; ++j){printf("%.0f\t", stu[i].score[j]);}printf("%.0f\t%.0f\n", stu[i].sum, stu[i].aver);}
}
void Exit(){printf("End of program!\n");exit(0);
}

用例测试结果 运行时间 占用内存 提示 得分
用例1未通过 0ms 0kb
结果错误
0
用例2未通过 0ms 0kb
结果错误
0
提交答案本次得分/总分:0.00/4.00分

这题有点问题,我并没用用官方给的程序框架,是我自己想的一个框架,我通过了前面V4.0的测试但是这里测试被卡住了。可能有什么特殊情况被卡住了,虽然没有拿到分数,但是我更愿意展示自己的代码 ,而不是一份通过的代码。相比而言我的代码实现相同的功能,代码复用程度也高,代码量更少。

2字符串中的字符排序(4分)

题目内容:

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

程序运行结果如下:

Input a string:

friend↙

definr

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

输入格式:

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

输出格式:"%s"

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

时间限制:500ms内存限制:32000kb
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int cmp(const void *a, const void *b){return *(char *)a-*(char *)b;
}
int main(){printf("Input a string:\n");char str[100];gets(str);qsort(str, strlen(str), sizeof(str[0]), cmp);puts(str);return 0;
}

用例测试结果 运行时间 占用内存 提示 得分
用例1通过 2ms 256kb
1
用例2通过 2ms 256kb
1
用例3通过 1ms 256kb
2
提交答案本次得分/总分:4.00/4.00分

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 <stdlib.h>
#include <string.h>
#include <ctype.h>
int IsAllDigit(char p[]){for(int i=0; p[i]; ++i){if(!isdigit(p[i])){return 0;}}return 1;
}
int main(){printf("Please input a string:\n");char str[100];gets(str);if(IsAllDigit(str)){printf("The string is digit string.");} else {printf("The string is not digit string.");}return 0;
}

用例测试结果 运行时间 占用内存 提示 得分
用例1通过 2ms 256kb
2
用例2通过 2ms 128kb
1
用例3通过 2ms 128kb
1
提交答案本次得分/总分:4.00/4.00分

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 <stdlib.h>
#include <string.h>
#include <math.h>#define MAXN 10000
int a[MAXN];
int p[MAXN];
int main(){long c, d;printf("please input c,d(c>2):\n");scanf("%ld,%ld", &c, &d);for(int i=2; i<MAXN; ++i){a[i]=i;}for(int i=2; i<sqrt(MAXN); ++i){for(int j=i+1; j<MAXN; ++j){if(a[i]!=0 && a[j]!=0 && a[j]%a[i]==0){a[j]=0;}}}int k=0, j;for(int i=2; i<MAXN; ++i){if(a[i]){p[k++]=a[i];}}int total=0;for( j=1; j<k; ++j){if(p[j]<=d&&p[j-1]>=c&&p[j]-p[j-1]==2){printf("(%ld,%ld)\n", p[j-1], p[j]);++total;}}printf("total=%d\n", total);return 0;
}

用例测试结果 运行时间 占用内存 提示 得分
用例1通过 3ms 360kb
1
用例2通过 3ms 364kb
2
用例3通过 3ms 236kb
1
提交答案本次得分/总分:4.00/4.00分

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 <stdlib.h>
#include <string.h>
#include <math.h>#define MAXN 10000
double func(int m){double sum=0;for(int i=0; i<=m; ++i){sum+=sqrt(m+i);}return sum;
}
int main(){double n;printf("Input n:\n");scanf("%lf", &n);int i=0;while(func(i)<=n) i++;printf("Result:m>=%d\n", i);printf("s=%.2f\n", func(i));return 0;
}

用例测试结果 运行时间 占用内存 提示 得分
用例1通过 1ms 128kb
1
用例2通过 1ms 128kb
1
用例3通过 1ms 128kb
1
用例4通过 1ms 128kb
1
提交答案本次得分/总分:4.00/4.00

查看全文
如若内容造成侵权/违法违规/事实不符,请联系编程学习网邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!

相关文章

  1. 我精心整理的 136 页 Excel 数据透视表 PDF 文件!【附获取方式】

    大家好,我是 JackTian。 我的一位好朋友,也是我的一位忠实读者了,从我2018年刚开始做公众号那时,就一直关注到我到现在。累积赠送他书籍共有小 10 余本,我的这位好朋友呢,也非常的良心。 他说:杰哥,你每次赠书给我,我也不知道给你点什么回报好?所以呢,我就写几篇原创…...

    2024/4/16 21:39:43
  2. 使用宝塔面板时80端口被占用的解决方法

    安装宝塔面板后,又接着安装了Nginx,然后再启动Java项目时提示80端口被占用。1、查看端口占用情况netstat -apn可以看到是Nginx占用80端口,我们取消其80端口,只保留888就够了。2、修改配置打开宝塔软件管理-->Nginx管理-->配置修改,找了半天没有发现“80”二字,原来…...

    2024/5/3 18:48:40
  3. _病猫 对于 wepy 不是内部或外部命令 -- 的解决办法

    闲来没事继续研究自己之前一直未解决的问题, 就是自己笔记本安装wepy-cli,一直提示"wepy 不是内部或外部命令".因为公司里面用的是这个框架, 想着自己在家没事的时候去跑跑项目,检查问题,但是一直无奈的是一直安装不成功,这个问题反复研究了三四次,一直没结果, 今天…...

    2024/4/19 10:14:18
  4. SpringBoot+Spring Security基于内存用户认证

    一、Spring Security框架1. 框架简介官方介绍:Spring Security是一个功能强大且可高度自定义的身份验证和访问控制框架。它是保护基于Spring的应用程序的事实标准。 Spring Security是一个专注于为Java应用程序提供身份验证和授权的框架。与所有Spring项目一样,Spring Securi…...

    2024/4/17 23:22:53
  5. Android 中使用 ServiceLoader、AutoService 摔坑记录

    ServiceLoader Demo:https://github.com/mengzhinan/ServiceLoader_testAutoService Demo:https://github.com/mengzhinan/AutoService_test对 ServiceLoader 和 AutoService 早有耳闻,因各种原因而未对相关技术深入了解。这两天在整理二者时踩到了无数硬坑,浏览器搜索发现全…...

    2024/4/18 12:10:36
  6. PTA天梯赛练习集 L1-039 古风排版 (20 分)

    中国的古人写文字,是从右向左竖向排版的。本题就请你编写程序,把一段文字按古风排版。 输入格式: 输入在第一行给出一个正整数N(<100),是每一列的字符数。第二行给出一个长度不超过1000的非空字符串,以回车结束。 输出格式: 按古风格式排版给定的字符串,每列N个字符…...

    2024/4/20 5:28:09
  7. VMware虚拟机黑屏不显示画面

    1.管理员身份运行cmd 输入 “netsh winsock reset”然后回车重新启动电脑 百度解释 ----“netsh winsock reset”指令,会把底层传输协议无关的高层数据传输编程接口恢复到默认状态。 1、netsh winsock reset命令,是计算机的一条指令,作用是重置 Winsock 目录。这个命令可以重…...

    2024/3/31 22:41:08
  8. 虚拟机进入黑屏并无法关闭

    虚拟机进入时黑屏 不会加载linux系统 关闭虚拟机会显示繁忙 第一步 我们需要先删除一下lck结尾的锁文件 第二步 管理员运行CMD 进入 输入netsh winsock reset 第三步 重新启动计算机 重启能解决99%的问题 关于netsh winsock reset 的小知识 (百度的) netsh winsock reset命…...

    2024/4/16 21:40:12
  9. 小程序减少体积(使用wepy感触)

    写小程序的时候,最怕的就是代码体积过大,但一个稍微复杂的小程序就会超过2M, 现在介绍2种减少体积的方法: 1 .使用wepy中,很多人直接在 wepy build –watch 下的dist文件直接上传, 其实里头有很多文件还保留着,我有时删除一个wpy页面,可是dist里面还是有这一页的文件…...

    2024/4/16 21:40:07
  10. 5-8 古风排版 (20分)

    5-8 古风排版 (20分)中国的古人写文字,是从右向左竖向排版的。本题就请你编写程序,把一段文字按古风排版。 输入格式:输入在第一行给出一个正整数NN(<100<100),是每一列的字符数。第二行给出一个长度不超过1000的非空字符串,以回车结束。 输出格式:按古风格式排…...

    2024/4/16 21:40:36
  11. mybatis注解详解

    http://www.cnblogs.com/ibook360/archive/2012/07/16/2594056.html...

    2024/5/3 14:53:00
  12. WAMP80端口被占用快速解决

    解决方法: 把80端口改为8080或者其它。 具体步骤: 点击WAMP客户端——apache——httpd.conf 这个是apache的配置文件 1. Litsten 80 改为 8080(老版本的wamp)有的wamp版本不一样 Listen 0.0.0.0:80 改为 Listen 0.0.0.0:8080 2. ServerName localhost:80 改为 ServerName lo…...

    2024/5/3 15:21:04
  13. Thymeleaf-extras-Spring Security 权限控制

    目录Thymeleaf-extras-Spring Security 概述Thymeleaf-extras-Spring Security 权限控制Thymeleaf-extras-Spring Security 概述1、spring-security 是 spring 提供身份验证和授权的安全框架,用于后台编码,对于前端页面,Thymeleaf 模板引擎对它提供了良好的支持。2、Spring …...

    2024/4/7 16:39:27
  14. wepy 实现倒计时代码

    倒计时组件:<template><view class=container >{{couent}}</view> </template><script>import wepy from wepy;export default class Daojishi extends wepy.component {props = {djstime: {type: Number,default: null,twoWay: true}};data = …...

    2024/4/16 21:41:00
  15. 古风句子

    1.用我三生烟火,换你一世迷离。 2、 我自是年少,韶华倾负。 3、 长街长,烟花繁,你挑灯回看, 短亭短,红尘辗,我把萧再叹。 4、 终是谁使弦断,花落肩头,恍惚迷离 5、 多少红颜悴,多少相思碎,唯留血染墨香哭乱冢。 6、 苍茫大地一剑尽挽破,何处繁华笙歌落。斜倚云端千…...

    2024/4/16 21:39:55
  16. 苹果:新iPad开启电子教科书新时代

    苹果公司在一月份首次发布了电子教科书应用iBook2,作为苹果在该领域的重要合作伙伴,麦格劳希尔教育公司认为苹果刚销售不久的“new iPad”将成为一个导火索,带来教科书市场的巨大革命。麦格劳希尔教育公司副总裁马丹表示,新iPad的视网膜显示屏和升级版处理器的优越性,着实…...

    2024/4/16 21:40:42
  17. spring security 和spring session整合

    <!-- SpringSecurity过滤器链 --><filter><filter-name>springSecurityFilterChain</filter-name><filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class></filter><filter><filter-name>…...

    2024/4/18 5:41:38
  18. win8“400 bad request”能登QQ,无法上网解决办法d

    原因:winsock 被破坏,导致的问题 解决办法:重置winsock; 管理员身份运行cmd; 执行命令: netsh winsock reset;...

    2024/4/19 23:23:17
  19. 架设PHP服务器80端口被占用的解决方法

    架设PHP服务器80端口被占用的解决方法 遇到apache无法启动的问题,首先考虑两点: 1、apache配置错误,常见于擅自改动了apache配置文件(httpd.conf)的同学。 2、端口占用,此时同学们应该关闭一切可能占用80端口的程序,比如迅雷什么的,因为wamp默认的端口就是80端口,在服…...

    2024/4/16 21:40:12
  20. 微信小程序-wepy-组件模板重复渲染

    微信小程序开发,有使用wepy框架的需求。上手: 安装自己可以到官网查看,飞机票:https://tencent.github.io/wepy/document.html#/ 具体开发模式和Vue开发很类似,MVVM开发模式。组件传值、组件复用,这里只备忘一下组件循环使用以及传值的具体实现。 区别:以往在开发网页、…...

    2024/4/24 2:16:14

最新文章

  1. 【华为 ICT HCIA eNSP 习题汇总】——题目集20

    1、&#xff08;多选&#xff09;若两个虚拟机能够互相ping通&#xff0c;则通讯过程中会使用&#xff08;&#xff09;。 A、虚拟网卡 B、物理网卡 C、物理交换机 D、分布式虚拟交换机 考点&#xff1a;数据通信 解析&#xff1a;&#xff08;AD&#xff09; 物理网卡是硬件设…...

    2024/5/3 20:45:22
  2. 梯度消失和梯度爆炸的一些处理方法

    在这里是记录一下梯度消失或梯度爆炸的一些处理技巧。全当学习总结了如有错误还请留言&#xff0c;在此感激不尽。 权重和梯度的更新公式如下&#xff1a; w w − η ⋅ ∇ w w w - \eta \cdot \nabla w ww−η⋅∇w 个人通俗的理解梯度消失就是网络模型在反向求导的时候出…...

    2024/3/20 10:50:27
  3. axios拦截器:每次请求自动带上 token

    Step 1&#xff1a;创建Axios实例并添加拦截器 在你的Vue项目中&#xff0c;一般我们会先导入axios&#xff0c;然后创建一个axios实例。这样做是为了方便统一管理和配置。 import axios from axios; // 引入axios// 创建一个axios实例 const service axios.create();// 添加请…...

    2024/4/30 17:13:59
  4. 深入理解springboot

    第五章 访问数据库 1.配置数据源 在applicaiton.properties中 spring.datasource.urljdbc:mysql://localhost:3306/chapter5 第九章 springmvc 1.总体流程 http请求发送给控制器&#xff0c;控制器与业务层交互&#xff0c;业务层使用noSQL缓存&#xff0c;业务层与数据访问层…...

    2024/4/30 15:25:26
  5. 【外汇早评】美通胀数据走低,美元调整

    原标题:【外汇早评】美通胀数据走低,美元调整昨日美国方面公布了新一期的核心PCE物价指数数据,同比增长1.6%,低于前值和预期值的1.7%,距离美联储的通胀目标2%继续走低,通胀压力较低,且此前美国一季度GDP初值中的消费部分下滑明显,因此市场对美联储后续更可能降息的政策…...

    2024/5/1 17:30:59
  6. 【原油贵金属周评】原油多头拥挤,价格调整

    原标题:【原油贵金属周评】原油多头拥挤,价格调整本周国际劳动节,我们喜迎四天假期,但是整个金融市场确实流动性充沛,大事频发,各个商品波动剧烈。美国方面,在本周四凌晨公布5月份的利率决议和新闻发布会,维持联邦基金利率在2.25%-2.50%不变,符合市场预期。同时美联储…...

    2024/5/2 16:16:39
  7. 【外汇周评】靓丽非农不及疲软通胀影响

    原标题:【外汇周评】靓丽非农不及疲软通胀影响在刚结束的周五,美国方面公布了新一期的非农就业数据,大幅好于前值和预期,新增就业重新回到20万以上。具体数据: 美国4月非农就业人口变动 26.3万人,预期 19万人,前值 19.6万人。 美国4月失业率 3.6%,预期 3.8%,前值 3…...

    2024/4/29 2:29:43
  8. 【原油贵金属早评】库存继续增加,油价收跌

    原标题:【原油贵金属早评】库存继续增加,油价收跌周三清晨公布美国当周API原油库存数据,上周原油库存增加281万桶至4.692亿桶,增幅超过预期的74.4万桶。且有消息人士称,沙特阿美据悉将于6月向亚洲炼油厂额外出售更多原油,印度炼油商预计将每日获得至多20万桶的额外原油供…...

    2024/5/2 9:28:15
  9. 【外汇早评】日本央行会议纪要不改日元强势

    原标题:【外汇早评】日本央行会议纪要不改日元强势近两日日元大幅走强与近期市场风险情绪上升,避险资金回流日元有关,也与前一段时间的美日贸易谈判给日本缓冲期,日本方面对汇率问题也避免继续贬值有关。虽然今日早间日本央行公布的利率会议纪要仍然是支持宽松政策,但这符…...

    2024/4/27 17:58:04
  10. 【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响

    原标题:【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响近日伊朗局势升温,导致市场担忧影响原油供给,油价试图反弹。此时OPEC表态稳定市场。据消息人士透露,沙特6月石油出口料将低于700万桶/日,沙特已经收到石油消费国提出的6月份扩大出口的“适度要求”,沙特将满…...

    2024/4/27 14:22:49
  11. 【外汇早评】美欲与伊朗重谈协议

    原标题:【外汇早评】美欲与伊朗重谈协议美国对伊朗的制裁遭到伊朗的抗议,昨日伊朗方面提出将部分退出伊核协议。而此行为又遭到欧洲方面对伊朗的谴责和警告,伊朗外长昨日回应称,欧洲国家履行它们的义务,伊核协议就能保证存续。据传闻伊朗的导弹已经对准了以色列和美国的航…...

    2024/4/28 1:28:33
  12. 【原油贵金属早评】波动率飙升,市场情绪动荡

    原标题:【原油贵金属早评】波动率飙升,市场情绪动荡因中美贸易谈判不安情绪影响,金融市场各资产品种出现明显的波动。随着美国与中方开启第十一轮谈判之际,美国按照既定计划向中国2000亿商品征收25%的关税,市场情绪有所平复,已经开始接受这一事实。虽然波动率-恐慌指数VI…...

    2024/4/30 9:43:09
  13. 【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试

    原标题:【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试美国和伊朗的局势继续升温,市场风险情绪上升,避险黄金有向上突破阻力的迹象。原油方面稍显平稳,近期美国和OPEC加大供给及市场需求回落的影响,伊朗局势并未推升油价走强。近期中美贸易谈判摩擦再度升级,美国对中…...

    2024/4/27 17:59:30
  14. 【原油贵金属早评】市场情绪继续恶化,黄金上破

    原标题:【原油贵金属早评】市场情绪继续恶化,黄金上破周初中国针对于美国加征关税的进行的反制措施引发市场情绪的大幅波动,人民币汇率出现大幅的贬值动能,金融市场受到非常明显的冲击。尤其是波动率起来之后,对于股市的表现尤其不安。隔夜美国股市出现明显的下行走势,这…...

    2024/5/2 15:04:34
  15. 【外汇早评】美伊僵持,风险情绪继续升温

    原标题:【外汇早评】美伊僵持,风险情绪继续升温昨日沙特两艘油轮再次发生爆炸事件,导致波斯湾局势进一步恶化,市场担忧美伊可能会出现摩擦生火,避险品种获得支撑,黄金和日元大幅走强。美指受中美贸易问题影响而在低位震荡。继5月12日,四艘商船在阿联酋领海附近的阿曼湾、…...

    2024/4/28 1:34:08
  16. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

    原标题:【原油贵金属早评】贸易冲突导致需求低迷,油价弱势近日虽然伊朗局势升温,中东地区几起油船被袭击事件影响,但油价并未走高,而是出于调整结构中。由于市场预期局势失控的可能性较低,而中美贸易问题导致的全球经济衰退风险更大,需求会持续低迷,因此油价调整压力较…...

    2024/4/26 19:03:37
  17. 氧生福地 玩美北湖(上)——为时光守候两千年

    原标题:氧生福地 玩美北湖(上)——为时光守候两千年一次说走就走的旅行,只有一张高铁票的距离~ 所以,湖南郴州,我来了~ 从广州南站出发,一个半小时就到达郴州西站了。在动车上,同时改票的南风兄和我居然被分到了一个车厢,所以一路非常愉快地聊了过来。 挺好,最起…...

    2024/4/29 20:46:55
  18. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

    原标题:氧生福地 玩美北湖(中)——永春梯田里的美与鲜一觉醒来,因为大家太爱“美”照,在柳毅山庄去寻找龙女而错过了早餐时间。近十点,向导坏坏还是带着饥肠辘辘的我们去吃郴州最富有盛名的“鱼头粉”。说这是“十二分推荐”,到郴州必吃的美食之一。 哇塞!那个味美香甜…...

    2024/4/30 22:21:04
  19. 氧生福地 玩美北湖(下)——奔跑吧骚年!

    原标题:氧生福地 玩美北湖(下)——奔跑吧骚年!让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 啊……啊……啊 两…...

    2024/5/1 4:32:01
  20. 扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!

    原标题:扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!扒开伪装医用面膜,翻六倍价格宰客!当行业里的某一品项火爆了,就会有很多商家蹭热度,装逼忽悠,最近火爆朋友圈的医用面膜,被沾上了污点,到底怎么回事呢? “比普通面膜安全、效果好!痘痘、痘印、敏感肌都能用…...

    2024/4/27 23:24:42
  21. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

    原标题:「发现」铁皮石斛仙草之神奇功效用于医用面膜丽彦妆铁皮石斛医用面膜|石斛多糖无菌修护补水贴19大优势: 1、铁皮石斛:自唐宋以来,一直被列为皇室贡品,铁皮石斛生于海拔1600米的悬崖峭壁之上,繁殖力差,产量极低,所以古代仅供皇室、贵族享用 2、铁皮石斛自古民间…...

    2024/4/28 5:48:52
  22. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

    原标题:丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者【公司简介】 广州华彬企业隶属香港华彬集团有限公司,专注美业21年,其旗下品牌: 「圣茵美」私密荷尔蒙抗衰,产后修复 「圣仪轩」私密荷尔蒙抗衰,产后修复 「花茵莳」私密荷尔蒙抗衰,产后修复 「丽彦妆」专注医学护…...

    2024/4/30 9:42:22
  23. 广州械字号面膜生产厂家OEM/ODM4项须知!

    原标题:广州械字号面膜生产厂家OEM/ODM4项须知!广州械字号面膜生产厂家OEM/ODM流程及注意事项解读: 械字号医用面膜,其实在我国并没有严格的定义,通常我们说的医美面膜指的应该是一种「医用敷料」,也就是说,医用面膜其实算作「医疗器械」的一种,又称「医用冷敷贴」。 …...

    2024/5/2 9:07:46
  24. 械字号医用眼膜缓解用眼过度到底有无作用?

    原标题:械字号医用眼膜缓解用眼过度到底有无作用?医用眼膜/械字号眼膜/医用冷敷眼贴 凝胶层为亲水高分子材料,含70%以上的水分。体表皮肤温度传导到本产品的凝胶层,热量被凝胶内水分子吸收,通过水分的蒸发带走大量的热量,可迅速地降低体表皮肤局部温度,减轻局部皮肤的灼…...

    2024/4/30 9:42:49
  25. 配置失败还原请勿关闭计算机,电脑开机屏幕上面显示,配置失败还原更改 请勿关闭计算机 开不了机 这个问题怎么办...

    解析如下&#xff1a;1、长按电脑电源键直至关机&#xff0c;然后再按一次电源健重启电脑&#xff0c;按F8健进入安全模式2、安全模式下进入Windows系统桌面后&#xff0c;按住“winR”打开运行窗口&#xff0c;输入“services.msc”打开服务设置3、在服务界面&#xff0c;选中…...

    2022/11/19 21:17:18
  26. 错误使用 reshape要执行 RESHAPE,请勿更改元素数目。

    %读入6幅图像&#xff08;每一幅图像的大小是564*564&#xff09; f1 imread(WashingtonDC_Band1_564.tif); subplot(3,2,1),imshow(f1); f2 imread(WashingtonDC_Band2_564.tif); subplot(3,2,2),imshow(f2); f3 imread(WashingtonDC_Band3_564.tif); subplot(3,2,3),imsho…...

    2022/11/19 21:17:16
  27. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机...

    win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”问题的解决方法在win7系统关机时如果有升级系统的或者其他需要会直接进入一个 等待界面&#xff0c;在等待界面中我们需要等待操作结束才能关机&#xff0c;虽然这比较麻烦&#xff0c;但是对系统进行配置和升级…...

    2022/11/19 21:17:15
  28. 台式电脑显示配置100%请勿关闭计算机,“准备配置windows 请勿关闭计算机”的解决方法...

    有不少用户在重装Win7系统或更新系统后会遇到“准备配置windows&#xff0c;请勿关闭计算机”的提示&#xff0c;要过很久才能进入系统&#xff0c;有的用户甚至几个小时也无法进入&#xff0c;下面就教大家这个问题的解决方法。第一种方法&#xff1a;我们首先在左下角的“开始…...

    2022/11/19 21:17:14
  29. win7 正在配置 请勿关闭计算机,怎么办Win7开机显示正在配置Windows Update请勿关机...

    置信有很多用户都跟小编一样遇到过这样的问题&#xff0c;电脑时发现开机屏幕显现“正在配置Windows Update&#xff0c;请勿关机”(如下图所示)&#xff0c;而且还需求等大约5分钟才干进入系统。这是怎样回事呢&#xff1f;一切都是正常操作的&#xff0c;为什么开时机呈现“正…...

    2022/11/19 21:17:13
  30. 准备配置windows 请勿关闭计算机 蓝屏,Win7开机总是出现提示“配置Windows请勿关机”...

    Win7系统开机启动时总是出现“配置Windows请勿关机”的提示&#xff0c;没过几秒后电脑自动重启&#xff0c;每次开机都这样无法进入系统&#xff0c;此时碰到这种现象的用户就可以使用以下5种方法解决问题。方法一&#xff1a;开机按下F8&#xff0c;在出现的Windows高级启动选…...

    2022/11/19 21:17:12
  31. 准备windows请勿关闭计算机要多久,windows10系统提示正在准备windows请勿关闭计算机怎么办...

    有不少windows10系统用户反映说碰到这样一个情况&#xff0c;就是电脑提示正在准备windows请勿关闭计算机&#xff0c;碰到这样的问题该怎么解决呢&#xff0c;现在小编就给大家分享一下windows10系统提示正在准备windows请勿关闭计算机的具体第一种方法&#xff1a;1、2、依次…...

    2022/11/19 21:17:11
  32. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”的解决方法...

    今天和大家分享一下win7系统重装了Win7旗舰版系统后&#xff0c;每次关机的时候桌面上都会显示一个“配置Windows Update的界面&#xff0c;提示请勿关闭计算机”&#xff0c;每次停留好几分钟才能正常关机&#xff0c;导致什么情况引起的呢&#xff1f;出现配置Windows Update…...

    2022/11/19 21:17:10
  33. 电脑桌面一直是清理请关闭计算机,windows7一直卡在清理 请勿关闭计算机-win7清理请勿关机,win7配置更新35%不动...

    只能是等着&#xff0c;别无他法。说是卡着如果你看硬盘灯应该在读写。如果从 Win 10 无法正常回滚&#xff0c;只能是考虑备份数据后重装系统了。解决来方案一&#xff1a;管理员运行cmd&#xff1a;net stop WuAuServcd %windir%ren SoftwareDistribution SDoldnet start WuA…...

    2022/11/19 21:17:09
  34. 计算机配置更新不起,电脑提示“配置Windows Update请勿关闭计算机”怎么办?

    原标题&#xff1a;电脑提示“配置Windows Update请勿关闭计算机”怎么办&#xff1f;win7系统中在开机与关闭的时候总是显示“配置windows update请勿关闭计算机”相信有不少朋友都曾遇到过一次两次还能忍但经常遇到就叫人感到心烦了遇到这种问题怎么办呢&#xff1f;一般的方…...

    2022/11/19 21:17:08
  35. 计算机正在配置无法关机,关机提示 windows7 正在配置windows 请勿关闭计算机 ,然后等了一晚上也没有关掉。现在电脑无法正常关机...

    关机提示 windows7 正在配置windows 请勿关闭计算机 &#xff0c;然后等了一晚上也没有关掉。现在电脑无法正常关机以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;关机提示 windows7 正在配…...

    2022/11/19 21:17:05
  36. 钉钉提示请勿通过开发者调试模式_钉钉请勿通过开发者调试模式是真的吗好不好用...

    钉钉请勿通过开发者调试模式是真的吗好不好用 更新时间:2020-04-20 22:24:19 浏览次数:729次 区域: 南阳 > 卧龙 列举网提醒您:为保障您的权益,请不要提前支付任何费用! 虚拟位置外设器!!轨迹模拟&虚拟位置外设神器 专业用于:钉钉,外勤365,红圈通,企业微信和…...

    2022/11/19 21:17:05
  37. 配置失败还原请勿关闭计算机怎么办,win7系统出现“配置windows update失败 还原更改 请勿关闭计算机”,长时间没反应,无法进入系统的解决方案...

    前几天班里有位学生电脑(windows 7系统)出问题了&#xff0c;具体表现是开机时一直停留在“配置windows update失败 还原更改 请勿关闭计算机”这个界面&#xff0c;长时间没反应&#xff0c;无法进入系统。这个问题原来帮其他同学也解决过&#xff0c;网上搜了不少资料&#x…...

    2022/11/19 21:17:04
  38. 一个电脑无法关闭计算机你应该怎么办,电脑显示“清理请勿关闭计算机”怎么办?...

    本文为你提供了3个有效解决电脑显示“清理请勿关闭计算机”问题的方法&#xff0c;并在最后教给你1种保护系统安全的好方法&#xff0c;一起来看看&#xff01;电脑出现“清理请勿关闭计算机”在Windows 7(SP1)和Windows Server 2008 R2 SP1中&#xff0c;添加了1个新功能在“磁…...

    2022/11/19 21:17:03
  39. 请勿关闭计算机还原更改要多久,电脑显示:配置windows更新失败,正在还原更改,请勿关闭计算机怎么办...

    许多用户在长期不使用电脑的时候&#xff0c;开启电脑发现电脑显示&#xff1a;配置windows更新失败&#xff0c;正在还原更改&#xff0c;请勿关闭计算机。。.这要怎么办呢&#xff1f;下面小编就带着大家一起看看吧&#xff01;如果能够正常进入系统&#xff0c;建议您暂时移…...

    2022/11/19 21:17:02
  40. 还原更改请勿关闭计算机 要多久,配置windows update失败 还原更改 请勿关闭计算机,电脑开机后一直显示以...

    配置windows update失败 还原更改 请勿关闭计算机&#xff0c;电脑开机后一直显示以以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;配置windows update失败 还原更改 请勿关闭计算机&#x…...

    2022/11/19 21:17:01
  41. 电脑配置中请勿关闭计算机怎么办,准备配置windows请勿关闭计算机一直显示怎么办【图解】...

    不知道大家有没有遇到过这样的一个问题&#xff0c;就是我们的win7系统在关机的时候&#xff0c;总是喜欢显示“准备配置windows&#xff0c;请勿关机”这样的一个页面&#xff0c;没有什么大碍&#xff0c;但是如果一直等着的话就要两个小时甚至更久都关不了机&#xff0c;非常…...

    2022/11/19 21:17:00
  42. 正在准备配置请勿关闭计算机,正在准备配置windows请勿关闭计算机时间长了解决教程...

    当电脑出现正在准备配置windows请勿关闭计算机时&#xff0c;一般是您正对windows进行升级&#xff0c;但是这个要是长时间没有反应&#xff0c;我们不能再傻等下去了。可能是电脑出了别的问题了&#xff0c;来看看教程的说法。正在准备配置windows请勿关闭计算机时间长了方法一…...

    2022/11/19 21:16:59
  43. 配置失败还原请勿关闭计算机,配置Windows Update失败,还原更改请勿关闭计算机...

    我们使用电脑的过程中有时会遇到这种情况&#xff0c;当我们打开电脑之后&#xff0c;发现一直停留在一个界面&#xff1a;“配置Windows Update失败&#xff0c;还原更改请勿关闭计算机”&#xff0c;等了许久还是无法进入系统。如果我们遇到此类问题应该如何解决呢&#xff0…...

    2022/11/19 21:16:58
  44. 如何在iPhone上关闭“请勿打扰”

    Apple’s “Do Not Disturb While Driving” is a potentially lifesaving iPhone feature, but it doesn’t always turn on automatically at the appropriate time. For example, you might be a passenger in a moving car, but your iPhone may think you’re the one dri…...

    2022/11/19 21:16:57