Portfolio C
Por: LuisMelloAmorim • 14/11/2015 • Trabalho acadêmico • 691 Palavras (3 Páginas) • 175 Visualizações
[pic 1]
...............................................................................................................................
ENSINO PRESENCIAL COM SUPORTE EAD
SISTEMAS DE INFORMAÇÃO – PROGRAMAÇÃO ESTRUTURADA
LUIS GUSTAVO MELO AMORIM - 248592013
PORTFÓLIO 1
programação estruturada
...............................................................................................................................
Guarulhos
2015
1 – 5.9
#include
using namespace std;
float valor_a_pagar(float horas)
{
float valor = 0.0;
if(horas > 0 && horas <= 3)
valor = 2;
if(horas > 3 && horas <= 17)
valor = (horas - 3) * 0.5 + 2;
if(horas > 17 && horas <= 24)
valor = 10;
return valor;
}
int arredondamento(float num)
{
int num_int = num;
if( (num - num_int) > 0)
{
num_int++;
return num_int;
}
else
return num_int;
}
main()
{
cout << "Estacionamento Mao na Roda" << endl;
cout << "__________________________" << endl;
cout << endl;
cout << "Para terminar, digite a qualquer momento numero negativo\n";
cout << endl;
cout << endl;
float horas = 0;
float entrada_dia = 0;
for(int i = 1; horas >= 0 ; i++)
{
cout << "Digite o tempo do carro: " << i <<" :\n";
cin >> horas;
if(horas > 0 && horas <= 24)
{
horas = arredondamento(horas);
float valor;
valor = valor_a_pagar(horas);
entrada_dia += valor;
cout <<"Valor a pagar: R$\n" << valor;
cout <
cout <<"_______________________________________\n";
cout << endl;
}
else
{
cout <<"Numero de horas invalido\n";
cout <
cout <<"_______________________________________\n";
cout << endl;
i--;
}
}
cout <<"Programa encerrado\n";
cout << endl;
cout << endl;
cout << "O total arrecadado neste dia foi: R$ "<
cout << endl;
}
2 – 5.28
#include
#include
int main(int argc, char *argv[])
{
int numeros[4], x, NUM;
printf("Digite um nu'mero natural de 4 digitos: ");
...