An algorithm that reads the name and gender of fifty-six people and gives the name and whether it is a man or a woman. In the end, report the total number of men and women. I need the program to run in VisualG.
I made this code but it is not working:
// Função :
// Autor :
// Data : 29/09/2015
// Seção de Declarações
var
nome , sexo , feminino, masculino: literal
i : inteiro
inicio
escreva ("Digite seu nome: ", nome)
leia (nome)
escreva ("Digite seu sexo: ", sexo)
leia (sexo)
para i <- 1 ate 56 faca
se (sexo = feminino) entao
escreva ("Seu nome é: ",nome "e seu sexo é: feminino", feminino)
fimse
fimpara
fimalgoritmo
I need to read the name and gender of 56 people in addition to the name and if it is male or female, and in the end let me know the total number of men and women, but I can not make the code work. / p>