-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1185.c
42 lines (35 loc) · 847 Bytes
/
1185.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
//1185 - Acima da Diagonal Secundária
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
int main()
{
double M[12][12], acc = 0;
int linha, coluna, cont = 0, lim_col = 10;
char oper;
scanf("%c", &oper); //S ou M soma ou media
for(linha = 0; linha < 12; linha++)
for(coluna = 0; coluna < 12; coluna++) //leitura de todos os elemntos
scanf("%lf", &M[linha][coluna]);
for(linha = 0; linha < 11; linha++)
{
for(coluna = 0; coluna <= lim_col; coluna++)
{
acc = acc + M[linha][coluna];
cont++;
}
lim_col = lim_col - 1;
}
if (oper == 'M')
{
acc = acc / cont; // faz a media dentre os valores da coluna [66 = 11!]
printf("%.1lf\n", acc);
}
if (oper == 'S')
{
printf("%.1lf\n", acc);
}
return 0;
}