Compare commits
No commits in common. "lesson_16" and "master" have entirely different histories.
|
@ -1,13 +0,0 @@
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
int doubleNumber(int a)
|
|
||||||
{
|
|
||||||
return a * 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
int main()
|
|
||||||
{
|
|
||||||
int a;
|
|
||||||
std::cin >> a;
|
|
||||||
std::cout << doubleNumber(a) << std::endl;
|
|
||||||
}
|
|
Loading…
Reference in New Issue