#include <stdio.h> #include <stdlib.h> #include <float.h> int main() { unsigned short n = 0; float *transcript = NULL; // 在 C 语言中,float 类型有一个特殊的宏表示其最大值,即 FLT_MAX。(需要添加头文件:float.h) float maxScore = 0.0, minScore = FLT_MAX, totalScore = 0.0; scanf("%hu", &...