This commit is contained in:
Andrii Hermaniuk 2022-03-27 15:35:56 +02:00
parent 998e3c299f
commit a08fc5d09a

View File

@ -1,3 +1,4 @@
#include<math.h>
#include<stdio.h> #include<stdio.h>
#include<string.h> #include<string.h>
#include<stdlib.h> #include<stdlib.h>
@ -58,8 +59,8 @@ for(int c=0;c<count;c++){
else if(znak=='/'){ else if(znak=='/'){
vysledok=num1/num2; vysledok=num1/num2;
} }
vysledok=(round(vysledok*100))/100;
if (vysledok2-vysledok < 0.001 && vysledok2-vysledok > -0.001){ if (vysledok2-vysledok < 0.0000001 && vysledok2-vysledok > -0.0000001){
printf("OK\n"); printf("OK\n");
} }
else{ else{