-
Notifications
You must be signed in to change notification settings - Fork 0
/
27.c
74 lines (74 loc) · 1.29 KB
/
27.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
73
74
//#define _CRT_SECURE_NO_WARNINGS
//#include <stdio.h>
//#define max(A,B) (A)>(B) ? (A):(B)
//
//int main()
//{
// int line, i, j, col;
// int mod = 1;
// double sum = 0.0;
// double re = 0.0;
// double money;
// char flag;
// while (scanf("%lf%d", &money, &line) != EOF && line <= 30)
// {
// int count = line;
// double arr[30][30] = { 0.0 };
// for (i = 0; i < line; i++)
// {
// count--;
// scanf("%d", &col);
// for (j = 0; j < col; j++)
// {
// scanf(" %c:%lf", &flag, &arr[i][j]);
// if (flag != 'A' && flag != 'B'&&flag != 'C')
// {
// mod = 0;
// }
// }
// for (int x = 0; x < col; x++)
// {
// if (arr[i][x] > 600.00)
// {
// mod = 0;
// break;
// }
// }
//
// if (mod == 0)
// {
// for (int x = 0; x < col; x++)
// {
// arr[i][x] = 0;
// }
// }
//
// }
//
// for (j = 0; j < line; j++)
// {
// sum = 0.0;
// for (i = 0; i <= col; i++)
// {
// sum = arr[j][i] + sum;
// }
// if (sum > money)
// {
// sum = 0.0;
// }
// if (sum > 1000.00)
// {
// sum = 1000.00;
// }
// if (re < money)
// re = re + sum;
// if (re > money)
// {
// re = re - sum;
// }
// }
// if (count <= 0)
// printf("%.2lf", re);
// }
// return 0;
//}