Posts by Matheus Santos • 1 point
2 posts
-
0
votes1
answer17
viewsA: ERROR C++ IVALID OPERANDS TYPES 'FLOAT' and 'FLOAT' to Binary 'Operator+'
Firstly, in its function media, you are declaring that it receives as a parameter basically a matrix, or you declare as: float media (int n, float vetor[]) or how: float media (int n, float *vetor)…
c++answered Matheus Santos 1 -
0
votes1
answer34
viewsA: Make a code that reads a text and shows without vowels. The code cannot use functions
One way to solve the problem is by using a second vector to store the new text. #include<stdio.h> #include<conio.h> main() { char texto[41], texto2[41]; int n,i,vogais=0,j=0;…
canswered Matheus Santos 1