Posts by Felladrin • 59 points
4 posts
-
0
votes1
answer39
viewsA: Programming logic (Portugol) (Visualg). How can this variable (MA) show me the exact name of the student who got the highest grade?
The algorithm is reading names and grades of several students, and at the same time it receives this information, it already calculates which of these students got the highest grade. So suppose…
-
-1
votes1
answer71
viewsA: Receive data from a url (m3u)
Dividing the problem into three steps, it can be said that Voce needs to use only the following PHP functions: Step 1: Getting the . m3u using file_get_contents Step 2: Capturing content using…
-
1
votes2
answers1447
viewsA: Forward and backward slide Javascript
The error of the 'undeclared' function may be in the fact that you use window.onload = function() { ... }. The suggestion I can give is that you remove all functions (function avancarImagem(),…
-
2
votes1
answer88
viewsA: Somebody help me something is wrong here there are 3 mistakes and I don’t know how to get them out! C#
From what I can see, first mistake is in: anim = GetComponents <Animator> (); that should be: anim = GetComponent <Animator> (); The second mistake is in: movement (h, v); that should…