I would like help with the code I have a problem that follows in the image:
I'musingthiscode:
#include<stdio.h>#include<stdlib.h>intmain(){floatCP,LP,PP,LA,AA,AT,AAZ,PL,PC,FP;intQA;printf("\nDigite os dados da picina");
printf ("\nComprimento, Largura, Profundidade: \n");
{
scanf("%f,%f, %f", &CP, &LA, &AA);
PL = 2*CP*PP;
PC = 2*LP*PP;
FP = CP*LP;
AT = PL+PC+FP;
AAZ = LA*AA;
QA = ((AT/AAZ)*1.05);
}
printf("\nA quantidade de azulejos para o revestimento da piscina e: %f", QA);
system("PAUSE");
}