本文主要是介绍浙大版循环结构程序设计——7-2-1找出一批学生的最高分,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
7-2-1 找出一批学生的最高分
#include <stdio.h>int main(){int score,max;scanf("%d",&score);max = score;while(score>=0){scanf("%d",&score);if(score>max){max = score;}}printf("%d",max);return 0;
}
这篇关于浙大版循环结构程序设计——7-2-1找出一批学生的最高分的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!