Posts by Maria Clara • 62 points
6 posts
-
0
votes3
answers1369
viewsA: Calculate the sum and mean of a numerical sequence
Sequence to be shown: 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25. In place of while x < 27 place x <= 25 and also create an auxiliary variable to store the sum of values. Example: y = 0 (start…
pythonanswered Maria Clara 62 -
1
votes1
answer892
viewsA: I’m looking for directions for front-end books
Hello, Diego.Want directions for books to start in the Front-End? To improve yourself? I Googled and found these. I hope it helps. https://www.casadocodigo.com.br/collections/livros-de-front-end…
-
0
votes1
answer34
viewsA: Only first form ID is sending!
First FORM: <input type="hidden" name="idunico" value='adawdaw'> According to FORM: <input type="hidden" name="idunico" value='awdawd'> The ids are the same. Try changing the name, for…
-
0
votes2
answers392
viewsA: Array sum storage in vector
I searched for the storage of array sums in vectors and found the site GUJ. for(i = 0; i < 4; i++) { for(j = 0; j < 5; j++ { vetorA[j] += matriz[i][j]; vetorB[i] += matriz[i][j]; Source:…
-
1
votes1
answer31
viewsA: take the margin from the google feed
Tries line-height: 10px. You may need to use px for the font size.
cssanswered Maria Clara 62 -
1
votes1
answer53
viewsQ: Recover orders customer 1. DUPLICATION ERROR
My code: SELECT Pedido.NumPedido , Pedido.CdCliente , Cliente.Nome , Produto.CdProduto , Produto.Descricao , PedidoItem.Quantidade , PedidoItem.ValorUnitario , PedidoItem.ValorTotalItem FROM Cliente…