Hola. Empece a estudiar prog y tengo un monton de probllemas. Estoy usando el de c++
y cuando copio un codigo me tira error en scanf, float, printf y en todo. Algunos que copie de internet me los ejecuta pero la mayoria no. EN este ejemplo que estoy haciendo mal?
int main()
{
float total-compra=0 descuento=0;
float total-a-pagar=0;
scanf ("%f", & total-compra);
descuento=total-compra*0.15;
total-a-pagar=total-compra - descuento;
printf ("el total es: $ %f", total-a-pagar);
}
Esto es lo que me sale despues de copilar:
C:\Dev-Cpp\Sin Nombre1.c In function `main':
3 C:\Dev-Cpp\Sin Nombre1.c syntax error before '-' token
4 C:\Dev-Cpp\Sin Nombre1.c syntax error before '-' token
5 C:\Dev-Cpp\Sin Nombre1.c `total' undeclared (first use in this function)
(Each undeclared identifier is reported only once
for each function it appears in.)
5 C:\Dev-Cpp\Sin Nombre1.c `compra' undeclared (first use in this function)
6 C:\Dev-Cpp\Sin Nombre1.c `descuento' undeclared (first use in this function)
7 C:\Dev-Cpp\Sin Nombre1.c `a' undeclared (first use in this function)
7 C:\Dev-Cpp\Sin Nombre1.c `pagar' undeclared (first use in this function)
Si pueden darme una mano se los agradeceria muchísimo.
y cuando copio un codigo me tira error en scanf, float, printf y en todo. Algunos que copie de internet me los ejecuta pero la mayoria no. EN este ejemplo que estoy haciendo mal?
int main()
{
float total-compra=0 descuento=0;
float total-a-pagar=0;
scanf ("%f", & total-compra);
descuento=total-compra*0.15;
total-a-pagar=total-compra - descuento;
printf ("el total es: $ %f", total-a-pagar);
}
Esto es lo que me sale despues de copilar:
C:\Dev-Cpp\Sin Nombre1.c In function `main':
3 C:\Dev-Cpp\Sin Nombre1.c syntax error before '-' token
4 C:\Dev-Cpp\Sin Nombre1.c syntax error before '-' token
5 C:\Dev-Cpp\Sin Nombre1.c `total' undeclared (first use in this function)
(Each undeclared identifier is reported only once
for each function it appears in.)
5 C:\Dev-Cpp\Sin Nombre1.c `compra' undeclared (first use in this function)
6 C:\Dev-Cpp\Sin Nombre1.c `descuento' undeclared (first use in this function)
7 C:\Dev-Cpp\Sin Nombre1.c `a' undeclared (first use in this function)
7 C:\Dev-Cpp\Sin Nombre1.c `pagar' undeclared (first use in this function)
Si pueden darme una mano se los agradeceria muchísimo.