Posts by Eduardo Salvadinha • 11 points
4 posts
-
0
votes2
answers39
viewsA: Problem using Return (Python 3)
First, I would like to inform you that you should explain in what exact scenario the error you refer occurs. Having said that, I realized that your problem occurs after the user chooses an option in…
-
1
votes2
answers771
viewsA: Check equal numbers java
An auxiliary class aluno will help a lot in this case: public class Aluno{ private int id; private float nota; public Aluno(int id,float nota){ this.id = id; this.nota = nota; } public int getId() {…
javaanswered Eduardo Salvadinha 11 -
0
votes2
answers194
viewsA: Sending e-mail with Nodejs and nodemailer
The problem you are presenting may have 2 causes: The constant SMTP_CONFIG may be malfunctioning. Your google account has 2-Factor Auth enabled. I tested your code with my credentials (replacing the…
-
0
votes1
answer204
viewsA: Function for monthly media calculation
Assuming the code of obtaining the data is correct, the average function should be something like this def mediatemp(tabela): soma = 0 for i in range(len(tabela)): linha= tabela.iloc[i] temp =…