This commit is contained in:
Bruno Rybársky 2023-12-18 15:19:55 +01:00
parent 49fa3f3857
commit ffaea1ef93

3
calc.c

@ -1,5 +1,4 @@
#include "stdio.h" #include "stdio.h"
#include "math.h"
#include "calc.h" #include "calc.h"
int calc(){ int calc(){
char pokracovat = 'a'; char pokracovat = 'a';
@ -7,7 +6,7 @@ int calc(){
double a = 0; double a = 0;
double b = 0; double b = 0;
char operacia = 0; char operacia = 0;
double vysledok = 0; double vysledok;
printf("Zadaj prvé číslo:\n"); printf("Zadaj prvé číslo:\n");
scanf("%lf", &a); scanf("%lf", &a);
printf("Zadaj druhé číslo:\n"); printf("Zadaj druhé číslo:\n");