Articles
Register
Sign In
Search
Jamesmitusa
@Jamesmitusa
May 2020
1
55
Report
Converta para C a linguagem em portugool abaixo:
algoritmo L4P19;
var
inteiro: C, CODSEXO,
NMULHER;
real: ALTURA, MAIOR,
MENOR;
real: VETALT[1..50],
VETSEX[1..50];
real: SOMAMULHER,
MEDIAMULHER;
real: SOMATURMA,
MEDIATURMA;
início
para C de 1 até 50
faça
leia(ALTURA);
leia(CODSEXO);
VETALT[C] <-
ALTURA;
VETSEX[C] <-
CODSEXO;
fim-para
NMULHER <- 0;
SOMAMULHER <- 0;
SOMATURMA <- 0;
MAIOR <-
VETALT[1];
MENOR <-
VETALT[1];
para C de 1 até 50
faça
se ( VETALT[C] >
MAIOR ) então
MAIOR <-
VETALT[C];
senão
se ( VETALT[C] <
MENOR ) então
MENOR <-
VETALT[C];
fim-se
fim-se
se ( VETSEX[C] = 2 )
então
NMULHER <- NMULHER
+ 1;
SOMAMULHER <-
SOMAMULHER + VETALT[C];
fim-se
SOMATURMA <-
SOMATURMA + VETALT[C];
fim-para
MEDIAMULHER <-
SOMAMULHER / NMULHER;
MEDIATURMA <-
SOMATURMA / 50;
imprima("Maior
altura da turma: ",MAIOR);
imprima("Menor
altura da turma: ",MENOR);
imprima("Mulheres com altura acima da
media das mulheres");
para C de 1 até 50
faça
se ( VETSEX[C] = 2 )
e ( VETALT[C] > MEDIAMULHER ) então
imprima(VETALT[C]);
fim-se
fim-para
imprima("Pessoas
com altura abaixo da media");
para C de 1 até 50
faça
se ( VETALT[C] <
MEDIATURMA ) então
imprima(VETALT[C]);
fim-se
fim-para
fim
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms and service
You must agree before submitting.
Send
Lista de comentários
DennisRitchie
#include <stdio.h>
main()
{
int c, codSexo, nMulher;
float altura, maior, menor;
float vetAlt[50], vetSex[50];
float somaMulher, mediaMulher;
float somaTurma, mediaTurma;
for( c=0; c<50; c++ )
{
printf("Altura: ");
scanf("%f", &altura);
printf("Cod. Sexo: ");
scanf("%d", &codSexo);
vetAlt[c] = altura;
vetSex[c] = codSexo;
}
nMulher = 0;
somaMulher = 0;
somaTurma = 0;
maior = vetAlt[0];
menor = vetAlt[0];
for( c=0; c<50; c++ )
{
if( vetAlt[c] > maior )
maior = vetAlt[c];
else
{
if( vetAlt[c] < menor )
menor = vetAlt[c];
}
if( vetSex[c] == 2 )
{
nMulher++;
somaMulher = somaMulher + vetAlt[c];
}
somaTurma = somaTurma + vetAlt[c];
}
mediaMulher = somaMulher / nMulher;
mediaTurma = somaTurma / 50;
printf("\nMaior altura da turma: %f", maior);
printf("\nMenor altura da turma: %f", menor);
printf("\nMulheres com altura acima da media das mulheres\n");
for( c=0; c<50; c++ )
if( (vetSex[c] == 2) && (vetAlt[c] > mediaMulher) )
printf("%.2f\n", vetAlt[c]);
printf("\nPessoas com altura abaixo da media\n");
for( c=0; c<50; c++ )
if( vetAlt[c] < mediaTurma )
printf("%.2f\n", vetAlt[c]);
printf("\n\n");
system("pause");
}
1 votes
Thanks 1
jamesmitusa
vlw de novo cara vc ta ficando craque rsrs
DennisRitchie
kkk... de nada..rs
More Questions From This User
See All
jamesmitusa
October 2020 | 0 Respostas
Responda
Jamesmitusa
May 2020 | 0 Respostas
Responda
Jamesmitusa
May 2020 | 0 Respostas
Responda
Jamesmitusa
May 2020 | 0 Respostas
Responda
Jamesmitusa
April 2020 | 0 Respostas
Responda
Jamesmitusa
April 2020 | 0 Respostas
Explique porque esta errado fazer if (num=10), o que ira acontecer?
Responda
Jamesmitusa
April 2020 | 0 Respostas
Responda
Recomendar perguntas
Deividyfreitas
May 2020 | 0 Respostas
BlackShot
May 2020 | 0 Respostas
Vanessakellen
May 2020 | 0 Respostas
Guiduarter
May 2020 | 0 Respostas
Mrzaine
May 2020 | 0 Respostas
O QUE SERIA AUTONOMIA?
Grazifer
May 2020 | 0 Respostas
Joazinho
May 2020 | 0 Respostas
a palavra rapidez formou se de qual derivacao
Celiana
May 2020 | 0 Respostas
Joazinho
May 2020 | 0 Respostas
Anatercia
May 2020 | 0 Respostas
×
Report "Converta para C a linguagem em portugool abaixo:algoritmo L4P19; var inteiro: C, CODSEXO, NMULHER;.... Pergunta de ideia de Jamesmitusa"
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
Sobre nós
Política de Privacidade
Termos e Condições
direito autoral
Contate-Nos
Helpful Social
Get monthly updates
Submit
Copyright © 2024 ELIBRARY.TIPS - All rights reserved.
Lista de comentários
main()
{
int c, codSexo, nMulher;
float altura, maior, menor;
float vetAlt[50], vetSex[50];
float somaMulher, mediaMulher;
float somaTurma, mediaTurma;
for( c=0; c<50; c++ )
{
printf("Altura: ");
scanf("%f", &altura);
printf("Cod. Sexo: ");
scanf("%d", &codSexo);
vetAlt[c] = altura;
vetSex[c] = codSexo;
}
nMulher = 0;
somaMulher = 0;
somaTurma = 0;
maior = vetAlt[0];
menor = vetAlt[0];
for( c=0; c<50; c++ )
{
if( vetAlt[c] > maior )
maior = vetAlt[c];
else
{
if( vetAlt[c] < menor )
menor = vetAlt[c];
}
if( vetSex[c] == 2 )
{
nMulher++;
somaMulher = somaMulher + vetAlt[c];
}
somaTurma = somaTurma + vetAlt[c];
}
mediaMulher = somaMulher / nMulher;
mediaTurma = somaTurma / 50;
printf("\nMaior altura da turma: %f", maior);
printf("\nMenor altura da turma: %f", menor);
printf("\nMulheres com altura acima da media das mulheres\n");
for( c=0; c<50; c++ )
if( (vetSex[c] == 2) && (vetAlt[c] > mediaMulher) )
printf("%.2f\n", vetAlt[c]);
printf("\nPessoas com altura abaixo da media\n");
for( c=0; c<50; c++ )
if( vetAlt[c] < mediaTurma )
printf("%.2f\n", vetAlt[c]);
printf("\n\n");
system("pause");
}