Posts by Fenix • 37 points
4 posts
-
-1
votes1
answer53
viewsQ: False return on a real number entry?
TamanhoDoVetor = int(input("Tamanho do vetor ? ")) print() Vetor = [0] * TamanhoDoVetor def CriaVetor(VetorNumeros,Tamanho): for i in range(Tamanho): VetorNumeros[i] = str(input("Elemento do vetor…
-
0
votes0
answers37
viewsQ: String assigned to a variable that is not in a list
In this code below I want Python to return me the traffic signal of 4 simultaneous traffic lights. As the results are random, sometimes it returns me the correct that would be: One headlamp with…
-
1
votes0
answers30
viewsQ: Code priorities in C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace ProgramacaoParalela { class Program { static…
-
0
votes1
answer58
viewsQ: Unexpected symbol, can’t I detect it?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace ProgramacaoParalela { class Program { static…