Commit 8f20ff12 authored by jandoon's avatar jandoon
Browse files

Add CHANGELOG

parent 519624a7
No related merge requests found
Showing with 18 additions and 0 deletions
+18 -0
CHANGELOG 0 → 100644
#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);
}
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment