-
Notifications
You must be signed in to change notification settings - Fork 0
/
10.c
72 lines (72 loc) · 1.37 KB
/
10.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//#define _CRT_SECURE_NO_WARNINGS
//#include <stdio.h>
//
//int main()
//{
// int scores[50][5];
// int col, row;//row 为学生个数 ,col为科目个数
// int score[5];
// int i = 0;
// int j = 0;
// float stu[50] = { 0.0 };
// float sub[5] = { 0.0 };
// int count = 0;
//
//
// while (scanf("%d %d", &row, &col) != EOF && col <= 50 && row <= 5)
// {
// for (i = 0; i < row; i++)//将每位学生的成绩堪称一个一维数组,放在二维数组中
// {
// for (j = 0; j < col; j++)
// {
// scanf("%d", &score[j]);
// scores[i][j] = score[j];
// }
// }
//
// for (i = 0; i < row; i++)//对成绩进行求和与求平均
// {
// float sum = 0.0;
// float tmp = 0.0;
// for (j = 0; j < col; j++)
// {
// sum = sum + scores[i][j];
// tmp = tmp + scores[j][i];
// }
// stu[i] = sum / col;
// if (i < 5)
// {
// sub[i] = tmp / row;
// }
// }
//
// for (i = 0; i < row; i++)//判断目标学生个数
// {
// int flag = 1;
// for (j = 0; j < col; j++)
// {
// if (scores[i][j] < sub[j])
// {
// flag = 0;
// }
// }
// if (flag==1)
// {
// count++;
// }
// }
// for (i = 0; i < row; i++)//打印平均成绩
// {
// printf("%.2f ", stu[i]);
// }
// printf("\n");
// for (i = 0; i < col; i++)
// {
// printf("%.2f ", sub[i]);
// }
// printf("\n");
// printf("%d", count);
//
// }
// return 0;
//}