#include <stdio.h>
void main()
{
int a[10],max,min,k;
int sum=0;
float score;
for (k=0;k<10;k++)
{
printf("Please input the score which is between 0 and 100:\n");
scanf ("%d",a[k]);
if (a[k]>100 || a[k]<0)
{
......................
阅读全部 | 2017年8月18日 00:29