标签:
1. 题目描述
小米是一个幼儿园老师,每学期的泥塑课上,她都会给每个学生发不超过250立方厘米的等量橡皮泥,教大家做 泥塑。在上课过程中,她发现每个班都恰好有一个小朋友会去抢另一个小朋友的橡皮泥,于是她决定,在正式开始做泥塑前,让大家把手里的橡皮泥都捏成一个立方 体,并且测量手里捏好的橡皮泥的长、宽和高。这样,她就可以知道谁被谁抢了橡皮泥了。
小米老师在不同的学期可能会带一个班或者同时带多个 班,因此输入数据可能有一组或者多组。每组输入数据的第一行为一个整数n,表示了这个班的小朋友数,之后n行每行包括了由空格分隔的三个整数和一个字符 串,那个字符串表示了小朋友的名字,前面三个整数则是这个学生手里橡皮泥块的长、宽、高数据。按照幼儿园的规定,每个班最多有9个小朋友,最少也要有2个 小朋友,每个小朋友在学籍系统中的名称不超过8个字符长。当出现一个班级的小朋友数为-1时,表示没有更多的班级了。
输出行数与小米老师带的班级数相同,形式为“X took clay from Y.”,具体请参考样例输出。
输入:
3
10 10 2 Jill
5 3 10 Will
5 5 10 Bill
4
2 4 10 Cam
4 3 7 Sam
8 11 1 Graham
6 2 7 Pam
-1
输出:
Bill took clay from Will.
Graham took clay from Cam.
2. 算法
找出每一组中,体积最大和最小的,输出与之对应的人名。
3. 代码实现
#include <stdio.h> int main() { char names[9][9]; int volumes[9]; int a, b, c; int n, i; int max_index, min_index; while( scanf("%d", &n), n != -1) { for( i = 0; i < n; i++) { scanf("%d %d %d %s", &a, &b, &c, names[i]); volumes[i] = a * b * c; } for(i = 0, max_index = 0, min_index = 0; i < n; i++) { //find max if(volumes[i] >= volumes[max_index]) { max_index = i; } //find min if(volumes[i] <= volumes[min_index]) { min_index = i; } } printf("%s took clay from %s.\n", names[max_index], names[min_index]); } return 0; }
标签:
原文地址:http://www.cnblogs.com/fengyubo/p/4772968.html