Skip to content

Commit e356c08

Browse files
committed
Fix lint
1 parent 236c76a commit e356c08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solutions/beecrowd/1040/1040.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ int main() {
66
while (scanf("%f %f %f %f", &a, &b, &c, &d) != EOF) {
77
m = (a * 2.0 + b * 3.0 + c * 4.0 + d) / 10.0;
88

9-
printf("Media: %.1f\n", ((float)(int)(m*10)/10.0));
9+
printf("Media: %.1f\n", ((float)(int)(m * 10) / 10.0));
1010

1111
if (m >= 7.0) {
1212
printf("Aluno aprovado.\n");

0 commit comments

Comments
 (0)