Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
jandoon
Prime
Commits
8f20ff12
Commit
8f20ff12
authored
4 years ago
by
jandoon
Browse files
Options
Download
Email Patches
Plain Diff
Add CHANGELOG
parent
519624a7
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CHANGELOG
+18
-0
CHANGELOG
with
18 additions
and
0 deletions
+18
-0
CHANGELOG
0 → 100644
+
18
-
0
View file @
8f20ff12
#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
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets