题解 | 公务员面试

公务员面试

https://www.nowcoder.com/practice/f3a134908d5b41869f14f58307008a97


#include <stdio.h>
int main()
{
	int score = 0, max = 0, min = 100, sum = 0, count = 0; 
	while (scanf("%d", &score) != EOF)
	{
		if (score > max)
			max = score;  
		if (score < min)
			min = score; 
		sum += score; 
		count++; 
		if (count == 7)
		{
			printf("%.2f\n", (sum - max - min) / 5.0);
			max = 0, min = 100, sum = 0, count = 0;
		}
	}
	return 0; 
}

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务