Posts by GiovanePS • 53 points
6 posts
-
0
votes1
answer4365
viewsQ: Instruction similar to system("cls") in C
The program I am doing works as follows: Whenever an incorrect value is typed, I want the program to warn that the value is incorrect, and soon after clear only the error message so that the user…
-
3
votes1
answer107
viewsQ: Divisions miscalculating in C
#include <stdio.h> int main() { double A, B; double MEDIA; scanf("%f", &A); scanf("%f", &B); MEDIA = (A + B)/2; printf("MEDIA = %5f", MEDIA); return 0; } In this program I have already…
-
-2
votes1
answer35
viewsQ: Difficulty downloading and installing Python Libraries
I did a lot of research, but I couldn’t find a way to download and install python libraries on the computer. I’m not having an error downloading, or error installing. I just don’t know how to do it.…
-
0
votes1
answer55
viewsQ: What’s the difference between writing the styling codes in the html file and css?
Have any problem writing the styling codes in the file .html (in the <head><style></style></head>) instead of writing to the file .css? I’m having a problem with my codes…
-
0
votes1
answer36
viewsQ: Which attribute to use to make the entire area of a checkbox selectable?
I want to make the "sample text" of the code: <label for=valueexemplo> <input type=checkbox value=valueexemplo>Texto de Exemplo </label keep the entire selectable text area, as if you…
-
2
votes1
answer288
viewsQ: ID with the first character being a number does not work when I put in css #[example number]
When for example I put in HTML:<div id="1">texto de teste</div> and I’ll put it in CSS: #1 {código de teste}, does not recognize the id=1. Even if I put "class" in place of "id", or if I…