#include <stdio.h> int main(void) { int score,max; ____①____; max= score; while ( ____ ② ____ ) { if(max< score) max=score; scanf("%d",&score); } printf("%d",max); return 0; }
时间: 2024-03-14 10:49:26 浏览: 95
#include <stdio.h>
填空部分应该是:
① scanf("%d",&score);
② score >= 0
这段代码的作用是输入一系列分数,直到输入一个负数为止,然后输出输入的最大分数。在程序中,使用了 while 循环来接收输入的分数,每次输入后都会比较一下当前输入的分数是否比之前输入的最大分数要大,如果是,则更新最大分数。最后输出最大分数即可。
阅读全文