In scanf, the use of "&" is required:
scanf("%f", &parede);
The use of "if" is also not necessary because you are assigning a value to the variable "liters", not creating a condition:
litros=(parede*2)/10;
With this, in the final result, printf should show:
printf("Sao necessarios (litros): %.2f", litros);
(O% .2f has determined the number of decimal places the program will display, which in this case are 2).
With this there is no need to use "scanf" after this printf because the user will not type anything else, only the result will be printed.
I hope I have helped.