Posts by Vitor Pessan • 64 points
6 posts
-
-1
votes1
answer2030
viewsQ: Read only specific lines of . txt files in C
Hello, I want to read a file .txt and get a specific name on it. I have the following code that does this, but checks on all lines of it. #include <stdio.h> #include <stdlib.h> #include…
-
0
votes1
answer46
viewsQ: How to "raise" classes in the bank using also confirm javascript
Hello, I have the following code and I need to pick up a student’s class at the bank and if yes to confirm in JS: "climb" your class. Ex: The student is 1A, I press the button to go up and he needs…
-
-1
votes2
answers4064
viewsA: Change title style within a tag
It is possible yes, within the class .tooltip , using :hover which allows you to change something when the mouse goes over. I started with that hidden, but when I gave the :hover, I mean, when I…
-
2
votes4
answers85
viewsA: Printing the highest value variable
Use that: var n1 = 4; var n2 = 7; var n3 = 6; if (n1 > n2 && n1>n3) { console.log("N1 é a maior variável") } else if (n2 > n1 && n2>n3) { console.log("N2 é a maior…
javascriptanswered Vitor Pessan 64 -
0
votes3
answers916
viewsA: How to send form when selecting checkbox?
Puts onChange="this.form.submit()" within the tag <input /> checkbox.
-
1
votes2
answers2370
viewsA: Position menu over image with CSS
Use position: fixed; in your menu css, it can be inline (in the code line) or external (separate file), follow the example with inline css: <header style="position: fixed;"> <img…
cssanswered Vitor Pessan 64