An error occurred while loading the file. Please try again.
-
jandoon authored8f20ff12
#include <iostream>
#include <stdio.h>
int Vynasob(float a, float b)
{
float result = a * b;
return result;
}
int main()
{
float x, y;
printf("Zadejte cislo:");
scanf_s("%f", &x);
printf("Zadejte dalsi cislo:");
scanf_s("%f", &y);
float finalResult = Vynasob(x, y);
printf("%f", finalResult);
}