输入5个学生的姓名和成绩,顺序输出这五个学生的姓名和成绩,并输出最高成绩的姓名和成绩

#include "stdio.h"
#define N 5
void main()
{
  int number[N]; 
  int i,max;
  char name[10];
  printf("Please input the names and performances:\n");
  for(i=0;i

你可能感兴趣的:(输入5个学生的姓名和成绩,顺序输出这五个学生的姓名和成绩,并输出最高成绩的姓名和成绩)