Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fukavoj
UPG
Commits
6f00bbb7
Commit
6f00bbb7
authored
4 years ago
by
fukavoj
Browse files
Options
Download
Email Patches
Plain Diff
Upload New File
parent
79ff9177
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Multiplication.cpp
+20
-0
Multiplication.cpp
with
20 additions
and
0 deletions
+20
-0
Multiplication.cpp
0 → 100644
+
20
-
0
View file @
6f00bbb7
#include
<iostream>
using
namespace
std
;
int
vynasob
(
int
x
,
int
y
)
{
int
nasobecek
=
x
*
y
;
return
nasobecek
;
}
int
main
()
{
int
a
,
b
;
cout
<<
"Zadejte cislo: "
;
cin
>>
a
;
cout
<<
"Zadejte cislo: "
;
cin
>>
b
;
int
nasobek
=
vynasob
(
a
,
b
);
cout
<<
"Nasobek cisla "
<<
a
<<
" a cisla "
<<
b
<<
" je "
<<
nasobek
;
return
0
;
}
\ 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