This commit is contained in:
Andrii Hermaniuk 2022-03-27 14:47:33 +02:00
parent 24f9ec213a
commit db11a44dc5

View File

@ -23,6 +23,10 @@ int main(){
float num2=strtof(start,&end); float num2=strtof(start,&end);
start=end; start=end;
while((*start)<'0'||(*start)>'9'){
start++;
}
float vysledok2=strtof(start,&end); float vysledok2=strtof(start,&end);
printf("%f\n",vysledok2); printf("%f\n",vysledok2);
float vysledok=0; float vysledok=0;
@ -50,7 +54,7 @@ int main(){
printf("ZLE\n"); printf("ZLE\n");
} }
printf("%.3f\n", vysledok); printf("%.3f\n", vysledok);
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }