-1
I’m with the [Error] expected expression before '<=' token
, with the following code:
#include <stdio.h>
#include <stdlib.h>
int main ()
{
float VS, VF;
printf ("valor do salario: ");
scanf ("%f", &VS);
printf ("valor de um financiamento: ");
scanf ("%f", &VF);
if (VF/VS)<=5
printf ("“Financiamento concedido.");
else
printf ("Financiamento negado.");
system ("PAUSE");
}
now the program is skipping the answer:
What did you mean by skipping the answer?
– AndersonBS