}
printf("Now please input array of w :\n");
for (i = 0; i < (*n); i++)
{
scanf("%f", &w[i]);
}
return;
}
void output(float x[], int n)
{
int i;
printf("\n\nafter arithmetic data: advise method\n");
for (i = 0; i < n; i++)
{
printf("x[%d]\t", i);
}
printf("\n");
for (i = 0; i < n; i++)
{
printf("%2.3f\t", x[i]);
}
return;
}
void main()
{
float p[MAXSIZE], w[MAXSIZE], x[MAXSIZE];
int i = 0, n = 0;
int sortResult[MAXSIZE];
getData(p, w, &n);
for (i = 0; i < n; i++)
{
x[i] = p[i] / w[i];
}
sort(x, sortResult, n);
GREEDY(w, x, sortResult, n);
output(x, n);
getch();
}
相關(guān)推薦:
2011計算機等級二級C語言五套模擬試題及答案
計算機等級考試二級C語言歷年真題匯總(2005-2010)
2011年計算機等級考試二級C語言常見問題匯總
計算機等級考試二級C語言常見知識點總結(jié)