注意:此页面搜索的是所有试题
以下程序的功能是:从键盘上输入若干个学生的成绩, 统计并输出最高成绩和最低成 绩,当输入负数时结束输入.请填空.#include <stdio.h> int main(int argc, char* argv[]) { float x,amax,amin; scanf("%f",&x); amax=x; amin=x; while( 21 ) { if(x>amax) amax=x; if( 22 ) amin=x; scanf("%f",&x); }printf("\namax=%f\namin=%f\n",amax,amin); return 0; }

参考答案