Posts by Walkyrien • 91 points
4 posts
-
-1
votes1
answer55
viewsQ: Add values in a 3-dimensional matrix
How do I get the user to add values to an array [][][]? calendarioEventos = new Evento[dia][mes][hora]; for(int i = 0; i < calendarioEventos.length; i++) { for(int j = 0; j <…
-
1
votes5
answers12449
viewsQ: How to separate a digit from an integer?
For example, for the program to tell the number of the hundreds of a number from: número_int = int(input("Digite um número inteiro: "))
-
4
votes2
answers94597
viewsQ: How to break the line?
Nome = input("Digite o nome do cliente: ") DiaVencimento = input("Digite o dia de vencimento: ") MêsVencimento = input("Digite o mês de vencimento: ") ValorFatura = input("Digite o valor da fatura:…
-
1
votes2
answers19135
viewsQ: Syntax = Invalid Syntax for variable name
LadodoQuadrado = input("Digite o valor correspondente ao lado de um quadrado: " variavel = float(LadodoQuadrado) x = LadodoQuadrado * 4 y = LadodoQuadrado ^ 2 print("perímetro:", x, "área:", y) When…