Commit 6f00bbb7 authored by fukavoj's avatar fukavoj
Browse files

Upload New File

parent 79ff9177
Showing with 20 additions and 0 deletions
+20 -0
#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
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