Posts by user7197428 • 13 points
3 posts
-
-2
votes2
answers65
viewsQ: On the Javascript part, how do I convert a number? Nan’s It
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport"…
-
-1
votes1
answer2202
viewsQ: Make a Program that checks if a typed letter is vowel or consonant
alfa = input("Informe uma letra ou consoante:") if alfa =="a": print("Vogal") elif alfa == "e": print("Vogal") elif alfa == "i": print("Vogal") elif alfa == "o": print("Vogal") elif alfa == "u":…
python-3.xasked user7197428 13 -
1
votes1
answer109
viewsQ: How can I subtract from a multi-position array with the same number in C?
The activity asks me to report a number of wagons and then asks me to assign a weight to each of them. I calculate the average of these weights and then subtract the average of the weights of each…