Posts by nbbbvfd • 27 points
4 posts
-
-1
votes1
answer242
viewsQ: Doubt with Python neighbor numbers
I wonder if someone could help me in this code in order to calculate neighboring numbers (numbers in common) in two arrays, but does not return output. i = 0 j = 0 k = 0 input1 = input() input2 =…
-
0
votes1
answer98
viewsQ: Doubt with Floyd’s Triangle
I have a problem with this code: function calculate() { var input = document.getElementById("input").value; var x = input; for (var i = input; i > 1; i--) { x += i; } var j = 1; var k = 1; var…
javascriptasked nbbbvfd 27 -
0
votes1
answer2282
viewsQ: Doubt in Cifra de César Javascript
Hello, I’m new to Javascript and had a problem with this code: <!DOCTYPE html> <html> <head> <title>Caesar Cipher</title> <meta charset="UTF-8"> <style>…
-
2
votes3
answers68
viewsQ: Doubt of HTML5
Hello, I’m new to programming and was trying to create a program. The application I use to run HTML5 reported an error on line 25 and 28. On line 25 I put onclick in a form of Submit and in between…