从键盘上输入若干个学生成绩,统计并输出最高成绩和最低成绩,当输入负数时结束输入。请填空。 main( ) {float s,gmax,gmin; scanf(“%f,”&s); gmax=s;gmin=s; while(s>=0) {if(s>gmax)gmax=s; if(___)gmin=s; scanf(“%f”,&s);} printf(“gmax=%f\ngmin=%f\n”gmax,gmin);} 相关知识...
下面程序的功能是从键盘上输入若干个学生的学习成绩,统计并输出最高成绩和最低成绩,当输入为负数时结束输入。main(){ float x,amax,amin;scanf(
从键盘上输入若干个学生的成绩,统计并输出最高成绩和最低成绩,当输入负数时结束。请在 内填入正确内容。#include void main( ){float x,
从键盘上输入若干个学生成绩,统计并输出最高成绩和最低成绩,当输入负数时结束输入。main(){ float s,gmax,gminscanf('%f,'&s)gmax=sgmin=swhile{if(s>gmax)gmax=sifgmin=sscanf('%f',&s)}printf('gmax=%f/ngmin=%f/n'gmax,gmin)}相关知识点: ...
程序功能:从键盘上输入若干个学生的成绩,统计并输出最高成绩和最低成绩,当输入负数时结束输入。请填空,将程序补充完整。 #include void main() { float x,xmax,xmin; printf("输入成绩:\n"); scanf("%f",&x); xmax=x; 【1】 while( 【2】 )...
7.以下程序的功能是从键盘上输入若干个学生的成绩,统计并输出最高成绩和最低成绩,当入负数时结束输入,请填空#includevoid main()scanf( %f, &x
以下程序的功能是:从键盘上输入若干个学生的 成绩, 统计并输出最高成绩和最低成绩,当输入负数时 结束输入。请填空。__( )___ #include void main( ) { float x,amax,amin; scanf("%f",&x); amax=x; amin=x; while (___ ) { if (x>amax) amax=x; if (__...
以下程序是从键盘上输入若干个学生的成绩,统计并输出最高成绩和最低成绩,当输入负数时结束输入,请将缺省语句填上。 void main ( ) { float x, amax, amin; scanf (“%f”, &x); amax=x; amin=x; while (x>0___) { if (amax<=x___) amax =x; if (___) amin =x; scanf (“%f”, &...
补充以下程序使其功能实现:从键盘上输入若干个学生的成绩,统计并输出最高成绩和最低成绩,当输入负数时结束,请填空。 // 从键盘上输入若干个学生的成绩,统计并输出最高成绩和
以下程序的功能是:从键盘上输入若干个学生的成绩,统计并输出最高成绩和最低成绩,当输入负数时结束输入,请填空。(答案中请不要带空格,答案之间用3个空格键间隔) #include using namespace std; void main() { fl...