mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 14:43:01 +02:00
24 lines
479 B
C++
24 lines
479 B
C++
#include <iostream>
|
|
|
|
int multiplication(int a, int b) {
|
|
int answer = 0;
|
|
for (int i = 0; i < a; i++) {
|
|
answer += b;
|
|
}
|
|
if (answer != a * b) {
|
|
std::cout << "There is a mistake in your code!" << std::endl;
|
|
return -1;
|
|
} else
|
|
return answer;
|
|
}
|
|
|
|
int main() {
|
|
int a, b;
|
|
std::cout << "Enter number a" << std::endl;
|
|
std::cin >> a;
|
|
std::cout << "Enter number b" << std::endl;
|
|
std::cin >> b;
|
|
std::cout << multiplication(a, b) << std::endl;
|
|
return 0;
|
|
}
|