This commit is contained in:
Andrii Hermaniuk 2022-03-27 14:35:37 +02:00
parent ac7cd1e1bb
commit 24f9ec213a

View File

@ -24,6 +24,7 @@ int main(){
float num2=strtof(start,&end);
start=end;
float vysledok2=strtof(start,&end);
printf("%f\n",vysledok2);
float vysledok=0;
if(num2==0&&znak=='/'){
@ -49,7 +50,7 @@ int main(){
printf("ZLE\n");
}
// printf("%.3f\n", vysledok);
printf("%.3f\n", vysledok);
return EXIT_SUCCESS;
}