This commit is contained in:
Matej Hajduk 2025-09-30 09:57:05 +02:00
parent eeecc88feb
commit a5789de8d3

View File

@ -57,7 +57,7 @@ int main() {
double con; double con;
if(sscanf(price, "%lf", &con) == ){ if(sscanf(price, "%lf", &con) == ){
printf( con ); printf("%.2f\n" con );
} }
} }
} }